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