Skip to content

Instantly share code, notes, and snippets.

@alibitek
Created April 15, 2017 13:02
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 alibitek/92dca6f5f89149f81693fd18bca83b01 to your computer and use it in GitHub Desktop.
Save alibitek/92dca6f5f89149f81693fd18bca83b01 to your computer and use it in GitHub Desktop.
#include <cstdio>
int main(int argc, char* argv[])
{
volatile int x = 5;
printf("%d %d %d %d\n", x++, x/=2, x-=3, x*=2);
int y = 5;
printf("%d %d %d %d\n", y++, y/=2, y-=3, y*=2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment