Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
#include <stdio.h> struct Test { struct { char ch; int n; }; }; int main() { struct Test t; t.ch = 'z'; t.n = 998; printf("t.ch = %c t.n = %d\n", t.ch, t.n); return 0; } /* run: t.ch = z t.n = 998 */