1. Which of the following statements are correct about 6 used in the program?
int num[6];
num[6]=21;
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.00 pm
The statement 'B' is correct, because int num[6]; specifies the size of array and num[6]=21; designates the particular element(7th element) of the array.