QUESTION 13
Which of the following statements declares alpha to be an array of 25 elements of the type int?
1. int alpha[25];
2. int array alpha[25];
3. int array alpha[25][25];
4. int alpha[2][5];
QUESTION 14
Assume you have the following declaration
char nameList[100];
Which of the following ranges is valid for the subscript of the array nameList?
1. 0 through 99
2. 0 through 100
3. 1 through 100
4. 1 through 101
Which of the following statements declares alpha to be an array of 25 elements of the type int?
1. int alpha[25];
Assume you have the following declaration
char nameList[100];
Which of the following ranges is valid for the subscript of the array nameList?
1. 0 through 99
Comments
Leave a comment