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