fork download
  1. #include <stdio.h>
  2. #pragma pack(1)
  3.  
  4. typedef struct{
  5. int a;
  6. char b;
  7. int c;
  8. } day;
  9.  
  10. int main(){
  11. printf("%d",sizeof(day));
  12. return 0;
  13. }
Success #stdin #stdout 0s 5408KB
stdin
Standard input is empty
stdout
9