fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char c = 1;
  5. char *cp = &c;
  6. void *p = cp;
  7. char **sp = p;
  8. char x = **sp;
  9. putchar(x);
  10. }
  11.  
Runtime error #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty