fork download
  1. #include <stdio.h>
  2.  
  3. struct foo {
  4. char data[7][7];
  5. } f;
  6.  
  7. int main (void){
  8. printf("size of f : %zu\n", sizeof f);
  9. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
size of f : 49