#include #include using namespace std; int main() { int i {10}; //Simpler way to do the previous example (output2.C). //Just perform a prefix increment in the next statement. cout << i << "\n"; //Output 10 (the old value). ++i; //Change i from 10 to 11. return EXIT_SUCCESS; }