Consider the following C program. #include <stdio.h> struct Ournode{ char x,y,z; }; int main(){ struct Ournode p = {‘1’, ‘0’, ‘a’+2}; struct Ournode *q = &p; printf (“%c, %c”, *((char*)q+1), *((char*)q+2)); return 0; } The output of this program is? Download as PDF Related posts: C Program GATE 2018 -8 C Program GATE 2019-6 C Program GATE 2018 -7 C Program GATE 2019 -4 C Program GATE 2019-3 C Program GATE 2019-2 C Program GATE 2019-1