

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> struct country { int code; char name[26]; } void main() { struct country c; c.code = 91; printf("India"); } |
A. | Garbage value |
B. | India |
C. | 91 |
D. | Compilation Error |
E. | None of these |
Answer» E. None of these | |