Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Matheus S. Serpa
- * https://github.com/matheusserpa/boltzmann */
- #include <stdio.h>
- int main(){
- #ifdef DOUBLE
- printf("double\n");
- #else
- printf("float\n");
- #endif
- return 0;
- }
- /*
- gcc -DDOUBLE -o temp temp.c -Wall -Wextra
- */
Advertisement
Add Comment
Please, Sign In to add comment