fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define IMPL 3
  5.  
  6. #define PASTE(y,e) #y e
  7. #define QUOTE(y,e) PASTE(y,e)
  8. #define GLUE(x,y) x##y
  9.  
  10. #define ADD_FILE(S,E) QUOTE(GLUE(GS_FFT,S),E)
  11.  
  12.  
  13.  
  14. const char result[] = ADD_FILE(IMPL, ".h");
  15.  
  16. int main() {
  17. cout << result;
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
GS_FFT3.h