MCQOPTIONS
Saved Bookmarks
| 1. |
What s the meaning of following declaration in C language? int (*p)[5]; |
| A. | It will result in compile error because there shouldn't be any parenthesis i.e. int *p[5] is valid. |
| B. | p is a pointer to 5 integers |
| C. | p is a pointer to integer array. |
| D. | p is a pointer to an array of 5 integers |
| Answer» E. | |