Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created September 16, 2016 09:33
Show Gist options
  • Save osyo-manga/6e731a7d5c9373ae29a5f6fbe481c939 to your computer and use it in GitHub Desktop.
Save osyo-manga/6e731a7d5c9373ae29a5f6fbe481c939 to your computer and use it in GitHub Desktop.
```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