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