Skip to content

Instantly share code, notes, and snippets.

@agrif
Created April 20, 2013 17:53
Show Gist options
  • Select an option

  • Save agrif/5426810 to your computer and use it in GitHub Desktop.

Select an option

Save agrif/5426810 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int x = 0;
int main() {
printf("%d ", (x = 3) + (x = 4));
printf("%d\n", x);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment