MCQOPTIONS
Saved Bookmarks
| 1. |
Guess the output of the following program : #include<stdio.h> int main() { int x = 10; float y = 10.0; if(x == y) printf("x and y are equal"); else printf("x and y are not equal"); return 0; } |
| A. | Compile Error |
| B. | x and y are equal |
| C. | Run Time Error |
| D. | x and y are not equal |
| Answer» C. Run Time Error | |