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