

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> typedef struct NN { int n, m; }s = {11, 22}; int main() { NN nn = s; printf("%d n", nn.n); } |
A. | Depends on the standard |
B. | 11 |
C. | 22 |
D. | Garbage value |
E. | Compilation Error |
Answer» F. | |