Single Choice
Not Set
QWhat is the output of this C code?
#include
struct student
{
int no;
char name[20];
}
void main()
{
struct student s;
s.no = 8;
printf("hello");
}
ID: #2644
Structure in C Language
2,916 views
Question Info
#2644Q ID
Not SetDifficulty
Structure in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Compile time error
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic