Vidyalelo
C Programming · Q90

Pointer

Programming · C Programming · question 90

Q90

What will be the output of the following C code? #include struct student int no; char name[20]; ; void main() struct student s; s.no = 8; printf("hello");

A.
Run time error
B.
Nothing
C.
hello
Answer
D.
Varies

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board