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