M Mr. Dubey π Coach β 104.48K Points π Principles of Programming Languages Q. #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; } (A) matching (B) non matching (C) syntax error (D) none of these ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) non matching