1.

Array base address in C language

A. Base address is the address of 0th index element.
B. An array b[] base address is &b[0]
C. An array b[] base address can be printed with printf("%d", b);
D. None of the above
Answer» B. An array b[] base address is &b[0]


Discussion

No Comment Found