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