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