InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 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 an array of 5 pointers to integers.(E) p is a pointer to an array of 5 integers |
| Answer» | |