Consider the following array definition:
int values[5] = { 4, 7, 6, 8, 2 };
What does each of the following statements display?
cout << values[4] << endl; __________
cout << (values[2] + values[3]) << endl; __________
cout << ++values[1] << endl; __________