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