1.

When Does The Compiler Not Implicitly Generate The Address Of The First Element Of An Array?

Answer»

Whenever an ARRAY name appears in an expression such as
• Array as an operand of the SIZEOF 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.

Whenever an array name appears in an expression such as
• Array as an operand of the sizeof 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.



Discussion

No Comment Found