Skip to content

Instantly share code, notes, and snippets.

@geekoff7
Last active July 22, 2018 15:08
Show Gist options
  • Save geekoff7/8adad30c08c9138ffd86151982861c39 to your computer and use it in GitHub Desktop.
Save geekoff7/8adad30c08c9138ffd86151982861c39 to your computer and use it in GitHub Desktop.
hygiene problem macro c programming language
#include <stdio.h>
#define MULTI(x) (x * 2)
int main() {
printf("%d \n", MULTI(3 + 3));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment