Q:

Array base address in C language

0

Array base address in C language


  1. Base address is the address of 0th index element.
  2. An array b[] base address is &b[0]
  3. An array b[] base address can be printed with printf(\"%d\", b);
  4. None of the above

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C does no automatic array bound checking. This is... >>
<< Predict the output of below code:...