fork download
  1. #include <stdio.h>
  2. struct X{
  3. int b;
  4. short int c;
  5. float d;
  6. char e;
  7. short int f;
  8. };
  9.  
  10. int main() {
  11. struct X b;
  12. printf("%d ",sizeof(b));
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
16