Which option below best describes the output of the followin…
Which option below best describes the output of the following program? #include struct st {int a;char ch;}; int main(void){ struct st obj; struct st *stobj = &obj; stobj->a = 31; stobj->ch = ‘X’; obj.a = 16; obj.ch = ‘C’; printf(“%d %c \n”, stobj->a, stobj->ch); stobj->a = 7; stobj->ch = ‘B’; printf(“%d %c \n”, obj.a, obj.ch); return 0;}