Which of the following gives the memory address of the first element in
array aFoo, an array with 100 elements?
A) aFoo[0];
B) aFoo;
C) &aFoo;
D) aFoo[1];
When I run this program option B and C both give same answer, so which one is correct
Thanks a lot for your replies
Last edited on
This also produce same answer as I stated above so what is the correct option
Last edited on