fork download
  1. #include <stdio.h>
  2.  
  3. void f2(char * const ptr) {
  4. ptr[1] = 'a';
  5. }
  6.  
  7. int main(void) {
  8. char foo[] = "Hi";
  9. f2(foo);
  10. puts(foo);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5396KB
stdin
Standard input is empty
stdout
Ha