fork download
  1. #include <stdio.h>
  2.  
  3. #define A "to"
  4. #define B "You"
  5. #define C "C"
  6. #ifdef __cplusplus
  7. #define C "C++"
  8. #endif
  9. #define D "Dear"
  10. #define E "Happy"
  11. #define F "Birthday"
  12. #define H printf("%s %s %s %s \n",E,F,A,B)
  13.  
  14. int main(){H;H;printf("%s %s %s %s \n",E,F,D,C);H;return 0;}
  15.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
Happy Birthday to You 
Happy Birthday to You 
Happy Birthday Dear C 
Happy Birthday to You