x); printf("%s",s->name); } A. Compiler Error Explanation: Initialization should not be done for structure members inside the structure declaration"/>

Latest C Aptitude Question SOLUTION: output?? Q. #include main() { struct xx {i nt x=3; char name[]="hello"; }; struct xx *s=malloc(sizeof(struct xx)); printf("%d",s->x); printf("%s",s->name); } A. Compiler Error E