Effects of prefix and postfix notation
#include <iostream> using namespace std; int main() { int i(12), j(18); cout << i++ << endl; cout << i++ << endl; cout << i << endl; cout << j-- << endl; cout << --j << endl; cout << --j << endl; return 0; }
1. | Example of using the postfix and prefix |