fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <math.h>
  4. #include <stdlib.h>
  5.  
  6. int main() {
  7. char *** tptr;
  8. char *p1;
  9. char p2[10];
  10. char **p3;
  11. char *p4[10];
  12. char (*p5)[10];
  13. char **p6[10];
  14. char ***p7;
  15. char (**p8)[10];
  16.  
  17. tptr = &p4;
  18. // char *** const ttpr = &p4;
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
Standard output is empty