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


Posted on by