fork(3) download
  1. #include <iostream>
  2.  
  3. void print (char * str)
  4. {
  5. std::cout << str << std::endl;
  6. str[0] = '1';
  7. }
  8.  
  9. int main ()
  10. {
  11. const char * c = "test text";
  12. print ( const_cast<char *> (c) );
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
test text