31
Find the output of the following program:
void main()
{
struct xx
{
int x=3;
char name[]="hello";
};
struct xx *s;
printf("%d", s->x);
printf("%s", s->name);
} Answer & Solution
Answer: Option
D
Solution:
You cannot initialize members in structure declaration.