fork download
  1. #include <stdio.h>
  2.  
  3. struct Empty {};
  4.  
  5. int main(void)
  6. {
  7. printf("%lu\n%lu", sizeof(struct Empty), sizeof(void));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5436KB
stdin
Standard input is empty
stdout
0
1