Node:Questions for Chapter 9,
Previous:Variable parameters,
Up:Pointers
Questions for Chapter 9
- What is a pointer?
 - How is a variable declared to be a pointer?
 - What data types can pointers point to?
 - Write a statement which converts a pointer to an integer into a pointer
to a 
double type.
 - Why is it incorrect to write 
float *number = 2.65; ?