

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int a=100, b=200, c;_x000D_ c = (a == 100 || b > 200);_x000D_ printf("c=%d\n", c);_x000D_ return 0;_x000D_ } |
A. | c=100 |
B. | c=200 |
C. | c=1 |
D. | c=300 |
Answer» D. c=300 | |