fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define _APP_ID_ "Hello World!"
  5.  
  6. int main() {
  7. printf("%s (string)", _APP_ID_);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
Hello World! (string)