Example of using the postfix and prefix : Prefix postfix « Language « C++
- C++
- Language
- Prefix postfix
Example of using the postfix and prefix

#include <iostream>
using namespace std;
int main( void )
{
int var1 = 0, var2 = 0;
cout << var1++ << endl;
cout << ++var2;
return 0;
}
Related examples in the same category