Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
#include <stdio.h>struct A{ int i;} ;struct B { struct A st ;} ;int main( void ){ struct A a = { 12345 } ; struct B b = { a }; //Invalid initialization type; expected 'int' but found 'struct A'. printf("%d" , b.st.i ) ; return 0;}