fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void foo(std::string strTemp);
  5.  
  6. int main() {
  7. // your code goes here
  8. std::string strTemp;
  9. foo(strTemp);
  10. return 0;
  11. }
  12.  
  13. void foo(std::string strTemp)
  14. {
  15.  
  16. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty