C Program GATE 2018 -5 Jayesh Umre 2/07/2022 GATE C No comments 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? Share:
Post a Comment
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.