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