What will be the output of the following program?
#include
int main()
{
int x = 3;
float y = 3.0;
if(x == y)
printf("x and y are equal");
else
printf("x and y are not equal");
return 0;
}
Answers
Answered by
1
Answer:
the output is
x and y are equal
Explanation:
as 3 and 3.0 are same
Answered by
0
output (x and y are equal )
Similar questions
Hindi,
2 months ago
Social Sciences,
2 months ago
English,
2 months ago
History,
3 months ago
Math,
11 months ago
English,
11 months ago
Social Sciences,
11 months ago