fork download
  1. #include <stdio.h>
  2.  
  3. struct s_t {
  4. int (*p)[];
  5. };
  6.  
  7. int main(void)
  8. {
  9. struct s_t s;
  10. printf("%zu\n", sizeof(s));
  11. }
Success #stdin #stdout 0s 4384KB
stdin
Standard input is empty
stdout
8