#include #include using namespace std; int main() { int i {10}; //Change i from old value (10) to new value (11). //Then use the new value (11) in the rest of the expression. cout << ++i << "\n"; //Output 11 (the new value). return EXIT_SUCCESS; }