1.

What will be the output of the following C code?#include <stdio.h> struct Country { int code = 12; char name[20]; }; void main() { struct Country c; c.code = 15; printf("England"); }

A. Compilation Error
B. Nothing
C. England
D. 15
E. None of these
Answer» B. Nothing


Discussion

No Comment Found

Related MCQs