Skip to content

Instantly share code, notes, and snippets.

@vrootic
Created December 4, 2014 14:47
Show Gist options
  • Select an option

  • Save vrootic/69cce01fb807b84a78fc to your computer and use it in GitHub Desktop.

Select an option

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