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
Environmental Sciences,
1 month ago
Computer Science,
1 month ago
Physics,
1 month ago
History,
2 months ago
Math,
10 months ago
English,
10 months ago
Social Sciences,
10 months ago