Created
September 16, 2016 09:33
-
-
Save osyo-manga/6e731a7d5c9373ae29a5f6fbe481c939 to your computer and use it in GitHub Desktop.
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
```shell | |
$ cat main.cpp | |
#define PI 3.14 | |
int | |
main(){ | |
float f = PI; | |
return 0; | |
} | |
$ g++ -E main.cpp | |
int | |
main(){ | |
float f = 3.14; | |
return 0; | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment