What is the output of the following problem ?

			  		

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#include

struct {
int x;
int y;
union {
int id_no;
char *name;
}b;
}s,*st;
int main()
{
st = &s;
st->x=10;
st->b.id_no = 101;
printf("%d %d
",s.x,s.b.id_no);
return 0;
}

A. 44844
B. 101 101
C. 10 101
D. Noneof these