

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program?_x000D_ #include_x000D_ _x000D_ typedef struct error {int warning, err, exception;} ERROR;_x000D_ int main()_x000D_ {_x000D_ ERROR e;_x000D_ e.err=1;_x000D_ printf("%d\n", e.err);_x000D_ return 0;_x000D_ } |
A. | 0 |
B. | 1 |
C. | 2 |
D. | Error |
Answer» C. 2 | |