find out the error in the following program.
int main()
{
structure college
{
int items;
char name[10];
}a;
strcpy(a.name, "GMIT");
a.items=10;
printf("%s", a.name);
return 0;
}

Posted on by