tectura
Company
Programming
main()
{
struct xx
{
int x=3;
char name[]="hello";
};
struct xx *s;
printf("%d",s->x);
printf("%s",s->name);
}
Read Solution (Total 0)
tectura Other Question
#define int char
main()
{
int i=65;
printf("sizeof(i)=%d",sizeof(i));
}
main()
{
int i=400,j=300;
printf("%d..%d");
}