1.

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

A. Nothing
B. hello
C. Compile time error
D. Varies
Answer» D. Varies


Discussion

No Comment Found