-
-
Save st98/d4d90eac4f9e77a1f336 to your computer and use it in GitHub Desktop.
gcc -E a.c -o b.c / # 1 "a.c" みたいなのの意味: https://gcc.gnu.org/onlinedocs/cpp/Preprocessor-Output.html http://stackoverflow.com/questions/5370539/gcc-preprocessor-output
This file contains 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
#define ZERO 0 | |
int main(void) { | |
return ZERO; | |
} |
This file contains 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
# 1 "a.c" | |
# 1 "<command-line>" | |
# 1 "a.c" | |
int main(void) { | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment