fork(1) download
  1. #include <stdio.h>
  2.  
  3. int x;
  4.  
  5. int main(){
  6. struct x {int a; int b;};
  7. printf("%d", sizeof(x));
  8. return 0;
  9. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
8