fork download
  1. #include <stdio.h>
  2.  
  3. struct my{
  4. char i;
  5. int b;
  6. } mm;
  7.  
  8.  
  9. int main(void) {
  10. printf("%lu %lu %lu", sizeof(int), sizeof(char), sizeof(mm));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
4 1 8