Computer Science, asked by Fiza2580, 2 months ago

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 ayushpandeygads
1

Answer:

the output is

x and y are equal

Explanation:

as 3 and 3.0 are same

Answered by gauravkuchekarr
0

output (x and y are equal )

Similar questions