fork(1) download
  1. #include <stdio.h>
  2.  
  3. struct a {
  4. int a,b,c;
  5. };
  6.  
  7. int main(void) {
  8. printf("%d\n", sizeof(struct a));
  9.  
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5444KB
stdin
Standard input is empty
stdout
12