Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Which of the following statements are correct about 6 used in the program?
int num[6];
num[6]=21; ?->(Show Answer!)
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.