fork download
  1. #include <iostream>
  2.  
  3. void func(int)
  4. {
  5. std::cout << "Hi!" << std::endl;
  6. }
  7.  
  8. int main(int, char**) {
  9. func(3);
  10. std::cout << "Ho!" << std::endl;
  11. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Hi!
Ho!