What will be the output of the following code?
int main()
{
structure sook
{
int items;
char name[30];
}a;
strcpy(a.name, "STAR");
a.items=10;
printf("%s", a.name);
return 0;
}


Posted on by