What is the output of the following code?
#includestdio.h

int main()
{
struct emp
{
char *name;
int age;
};
struct emp e1 = {"Rohan", 21};
struct emp e2 = e1;
strupr(e2.name);
printf("%s\n", e1.name);
return 0;
}


Posted on by