What will be the output of the following function?
#include<stdio.h> main() { struct xx { int x=3; char name[]=hello; }; struct xx *s; printf(%d,s->x); printf(%s,s->name); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
#include<stdio.h> main() { struct xx { int x=3; char name[]=hello; }; struct xx *s; printf(%d,s->x); printf(%s,s->name); }