Single Choice
Not Set
QWhat will be the output of the program in Turbo C (under DOS)?
#include
int main()
{
struct emp
{
char *n;
int age;
};
struct emp e1 = {"Dravid", 23};
struct emp e2 = e1;
strupr(e2.n);
printf("%s\n", e1.n);
return 0;
}
ID: #2683
Union in C Language
1,726 views
Question Info
#2683Q ID
Not SetDifficulty
Union in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
DRAVID
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic