MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int main() { float f1 = 0.1; if (f1 == 0.1) printf("equal\n"); else printf("not equal\n"); } |
| A. | equal |
| B. | not equal |
| C. | output depends on the compiler |
| D. | none of the mentioned |
| Answer» C. output depends on the compiler | |