fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4.  
  5. struct test
  6. {
  7.  
  8. char c;
  9.  
  10. int y;
  11.  
  12. float r;
  13.  
  14. double d;
  15.  
  16. } t1;
  17.  
  18. printf("%d\n",sizeof(t1));
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
20