fork download
  1. main()
  2. {
  3. struct test
  4. {
  5. char c;
  6. int i;
  7. char m;
  8. } t1;
  9. printf("%d %d\n", sizeof(t1), sizeof(t1.c));
  10. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
12 1