fork(6) download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. #define DBG std::cout << __FILE__ << " " << __LINE__ << " "
  5.  
  6. int main()
  7. {
  8. std::string world = "world";
  9. DBG << "Hello" << world;
  10. }
Success #stdin #stdout 0.02s 2812KB
stdin
Standard input is empty
stdout
prog.cpp 9 Helloworld