fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define TO_STR(str) #str
  5.  
  6. int main() {
  7. float hello;
  8. long world;
  9.  
  10. cout << TO_STR(hello world) << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
hello world