What will the following code display? int numbers[] = { 99, 87, 66, 55, 101 }; for (int i = 1; i < 4; i++) cout << numbers[i] << endl; code example
Example: What will the following code display? int numbers[] = {99, 87, 66, 55, 101); cout << numbers[3] << end1;
int numbers[] = {99, 87, 66, 55, 101);
cout << numbers[3] << end1;