MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the follwing code? #include using namespace std; int main() { float a=22.22; double b= 22.22; if(a==b) cout |
| A. | matching |
| B. | non matching |
| C. | syntax error |
| D. | none of these |
| Answer» C. syntax error | |