MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the program #include<stdio.h> int main() { int x = 10, y = 20, z = 5, i; i = x < y < z; printf("%d n", i); return 0; } |
| A. | 0 |
| B. | 1 |
| C. | Error |
| D. | None of these |
| Answer» C. Error | |