When does the compiler not implicitly generate the address of the first element of an array?
By admin on Jan 9, 2007 in C Interview Questions
Whenever an array name appears in an expression such as
Ø array as an operand of the size of operator
Ø array as an operand of & operator
Ø array as a string literal initializer for a character array
Then the compiler does not implicitly generate the address of the address of the first element of an array.


