Some questions on arrays
- What is the highest legal index for the following arrays?
- int arr1[4];
- double means[12];
- Which of the following identifiers are declared as arrays?
- int i, j[4], k;
- float r[3],s[2],t,u[7];
Answers to these questions
Back to notes on arrays