Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Last active August 29, 2015 14:21
Show Gist options
  • Save Baekjoon/9082a81fa7c95f68f3f2 to your computer and use it in GitHub Desktop.
Save Baekjoon/9082a81fa7c95f68f3f2 to your computer and use it in GitHub Desktop.
6.cpp
#include <iostream>
using namespace std;
int main() {
int a = 5;
cout << a++ << endl;
cout << a << endl;
a = 5;
cout << ++a << endl;
cout << a << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment