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
Answer» B. non matching
984
0
Do you find this helpful?
1

Discussion

No comments yet