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<<"Matching"; else cout<<"Not Matching"; return 0; }

A. matching
B. non matching
C. syntax error
D. none of these
Answer» C. syntax error


Discussion

No Comment Found