fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. #include <stdio.h>
  6.  
  7. void func(char** s)
  8. {
  9. *s = "World";
  10. }
  11.  
  12. int main()
  13. {
  14. char* str = "Hello";
  15. printf("%s ", str);
  16. func(&str);
  17. printf("%s", str);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Hello World