fork(2) download
  1. struct A
  2. {
  3. int a:2;
  4. int b:3;
  5. int c:3;
  6. };
  7.  
  8. int main()
  9. {
  10. struct A p = {2,6,1};
  11. printf("\n%d\n%d\n%d\n",p.a,p.b,p.c);
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
-2
-2
1