Home » C++ Programming » Arrays » Question
  1. Which of the following accesses the ninth element stored in array?
    1. array;
    2. array[8];
    3. array[7];
    4. array(10);
    5. None of these
Correct Option: B

The array location starts from zero, So it can accessed by array[8].



Your comments will be displayed only after manual approval.