fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char arr[2][3][3] = {'A','P','P','L','I','E','D',' ','C','O','U','R','S','E'};
  6. char (*p) [2][3][3] = &arr;
  7. printf("%c ",(*(*(*p)[0] + 5)));
  8. printf("%c ",(*(*(*p)[1] - 3)));
  9. printf("%d ", (*(*(*p)[0] + 5)) - (*(*(*p)[1] - 3)) );
  10. printf("%u %u",*p,arr);
  11. return 0 ;
  12. }
  13.  
Success #stdin #stdout 0s 4244KB
stdin
Standard input is empty
stdout
E D 1 4290077136 4290077136