Quiz Results
--------------------------------------------------------------------------------
1. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr;
You answered: B (ptr is a pointer to an integer quantity) Correct!
2. Several declarations involving pointers are shown below. Pick the correct solution.
int *ptr[10];
You answered: C (ptr is a 10-element array of pointers to integer quantities) Correct!
3. Several declarations involving pointers are shown below. Pick the correct solution.
int (*ptr)[10];

