What does the following statement mean?Int (*a)[4]A. 'a' is a pointer to an array of 4 integersB. 'a' is an array of pointers to integerC. 'a' is a pointer to function returning an integer
A
-
Interview Candidate
- Jun 21st, 2005
- 2
- 1952
Showing Answers 1 - 2 of 2 Answers
What does the following statement mean?Int (*a)[4]A. 'a' is a pointer to an array of 4 integersB. 'a' is an array of pointers to integerC. 'a' is a pointer to function returning an integer