What will be the output of the following code:

int main()
{
structure hotel
{
int items;
char name[30];
}a;
strcpy(a.name, "TAJ");
a.items=10;
printf("%s", a.name);
return 0;
}


Posted on by