C Programming and Technical Logical Reasoning Coding Decoding

#include
main()
{
struct xx
{i
nt x;
struct yy
{
char s;
struct xx *p;
};
struct yy *q;
};
}

Read Solution (Total 1)

C Other Question

output??
#include
main()
{
struct xx
{i
nt x=3;
char name[]="hello";
};
struct xx *s;
printf("%d",s->x);
printf("%s",s->name);
}

Answer: Compiler Error

Explanation: You should not initialize variables in declaration
output?
main()
{
printf("nab");
printf("bsi");
printf("rha");
}

Answer: hai

Explanation:
n - newline
b - backspace
r - linefeed