fork download
  1. void g(char* const* p) {
  2. **p = 'a';
  3. }
  4.  
  5. void f(char *const *p)
  6. {
  7. g(p);
  8. }
  9.  
  10. int main() {
  11.  
  12. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty