Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 9 (Q.No. 45)
45.
Element doubleArray[7] is which element of the array?
the sixth
the seventh
the eighth
impossible to tell
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

Ayesha... said:   5 years ago
double array[7];
If we initialize the array (index 0) with value 1.
array[0] = 1;
array[1] = 2;
array[2] = 3;
array[3] = 4;
array[4] = 5;
array[5] = 6;
array[6] = 7;
array[7] = 8;

Description said:   1 decade ago
How answer description?

Post your comments here:

Your comments will be displayed after verification.