matheus__serpa

DEFINE in compilation

Oct 15th, 2014
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. /* Matheus S. Serpa
  2.  * https://github.com/matheusserpa/boltzmann */
  3.  
  4. #include <stdio.h>
  5.  
  6. int main(){
  7.  
  8.     #ifdef DOUBLE
  9.         printf("double\n");
  10.     #else
  11.         printf("float\n");
  12.     #endif
  13.     return 0;
  14. }
  15.  
  16. /*
  17. gcc -DDOUBLE -o temp temp.c -Wall -Wextra
  18. */
Advertisement
Add Comment
Please, Sign In to add comment