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