

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> typedef struct MM { int n1, n2; }mm; int main() { struct MM m = {22, 44}; mm k = m; printf("%d n", k.n1); } |
A. | Compilation Error |
B. | 44 |
C. | 22 |
D. | Garbage value |
E. | None of these |
Answer» D. Garbage value | |