fork download
  1. #include <stdio.h>
  2.  
  3. struct A {
  4. struct B {
  5. int we;
  6. } e;
  7. int r;
  8. };
  9.  
  10. int main(void) {
  11. struct A a;
  12. a.r = 10;
  13. a.e.we = 11;
  14. return 0;
  15. }
Success #stdin #stdout 0s 4120KB
stdin
Standard input is empty
stdout
Standard output is empty