fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void nonsense_copy(string str){
  5. cout << str;
  6. }
  7.  
  8. int main() {
  9. char buff[] = "Ala ma kotozaura";
  10. nonsense_copy(buff);
  11. return 0;
  12. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Ala ma kotozaura