Skip to content

Instantly share code, notes, and snippets.

@zeptometer
Last active October 1, 2015 22:47
Show Gist options
  • Select an option

  • Save zeptometer/0b60ba05c6bcf4f83887 to your computer and use it in GitHub Desktop.

Select an option

Save zeptometer/0b60ba05c6bcf4f83887 to your computer and use it in GitHub Desktop.
int main() {
int x = 1;
int y = x + 1;
#define M y + x;
x = M + y;
y = x;
return M + x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment