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