C
Programming and Technical
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
Explanation: Initialization should not be done for structure members inside the structure
declaration
Read Solution (Total 0)
C Other Question