• 2022-11-02
    What is the output of the following program after executing?#include [stdio.h]struct st {int x;int *y;} *p;int main(){ int dt[4]={10,20,30,40}; struct st aa[4]={ 50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]}; p=aa; printf("%d",++(p->x)); return 0;}
    A: 10
    B: 11
    C: 51
    D: 60