x); printf("%s",s->name); } Answer: Compiler Error Explanation: You should not initialize variables in declaration"/>

Latest C Aptitude Question SOLUTION: 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 no