fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <cstdio>
  4. #include <cstdlib>
  5.  
  6. void Start(std::string &mon)
  7. {
  8. printf("%s\n", mon.c_str());
  9. int month= atoi(mon.c_str());
  10. printf("%i", month);
  11. }
  12.  
  13. int main() {
  14. std::string str = "03";
  15. Start(str);
  16. }
Success #stdin #stdout 0s 3016KB
stdin
Standard input is empty
stdout
03
3