Last active
July 22, 2018 15:08
-
-
Save geekoff7/8adad30c08c9138ffd86151982861c39 to your computer and use it in GitHub Desktop.
hygiene problem macro c programming language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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