Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mrud
Created March 13, 2014 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrud/9533127 to your computer and use it in GitHub Desktop.
Save mrud/9533127 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int i=1;
int j=1;
printf("i : %d j : %d\n", i, j);
printf("i post : %d j pre: %d\n", i++, ++j);
printf("i : %d j : %d\n", i, j);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment