fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. #define PRINT_STRING(s) cout << (#s) << endl;
  6.  
  7. int main() {
  8. cout << "foo(\"hello\", \"world\", 5)" << endl;
  9. PRINT_STRING(foo("hello", "world", 5))
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
foo("hello", "world", 5)
foo("hello", "world", 5)