Given the following array definition:
int values[] = {2, 6, 10, 14};
what do each of the following display?
A) cout << values[2];
B) cout << ++values[0];
C) cout << values[1]++;
D) x = 2;
cout << values[++x];
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.