fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. typedef int *pint;
  6. typedef pint a10pint[10];
  7. typedef a10pint *pa10pint;
  8. int i = 42;
  9. pint p = &i;
  10. a10pint arr = { p };
  11. pa10pint foo = &arr;
  12. printf("%d\n", *(*foo)[0]);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
42