MCQOPTIONS
Saved Bookmarks
| 1. |
main() { float f = 1.1; double d = 1.1; if ( f == d) printf(“True”); else printf(“False”); } |
| A. | True |
| B. | False |
| C. | compiler error |
| D. | None of these |
| Answer» C. compiler error | |