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