Q126
What will be the output of the following C code? #include void main() struct student int no; char name[20]; ; struct student s; s.no = 8; printf("%d", s.no);
A.
Nothing
B.
Compile time error
C.
Junk
D.
8
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board