fork download
  1. #include<stdio.h>
  2.  
  3. typedef int T1[10][9];
  4. int main()
  5. {
  6. struct {
  7. T1 *a[10];
  8. int (*b)[100];
  9. } f[10][10][10];
  10. printf("p1 = %d\n",(int)sizeof(T1));
  11. }
Success #stdin #stdout 0s 5516KB
stdin
Standard input is empty
stdout
p1 = 360