struct Student { char aa; char bb; } b = {'1', '2'}; int main(void) { printf ("%c\t%c\n", b.aa, b.bb); return 0; }