6 lines
78 B
C++
6 lines
78 B
C++
int myArray[2];
|
|
|
|
myArray[0] = 1;
|
|
myArray[1] = 3;
|
|
|
|
cout << myArray[1] << endl;
|