// // ***** Program Ch03_2c.cpp *********** // Example of arithmetic operations, increment and decrement // operators #include #include #include #include using namespace std; int main() { int num1 = 10; // variable used for increment and decrement operations // Perform prefix and postfix increment and decrement operations // on the num1 variable. These operations are performed in an output // statement to illustrate the difference between the two methods // increment and decrement operators - POSTFIX cout << "POSTFIX incremennt and decrement operations\n"; cout << "*******************************************\n"; cout << "Perform Postfix increment:\n"; cout << "\tnum1 before postfix ++ operation: " << num1 << endl; cout << "\tnum1 during postfix ++ operation: " << num1++ <