Q. What will be the output of the follwing code? #include<iostream> using namespace std; int main() { float a=22.22; double b= 22.22; if(a==b) cout<<"Matching"; else cout<<"Not Matching"; return 0; } (Solved)
1. matching
2. non matching
3. syntax error
4. none of these
- b. non matching