int main int x,y;x=10;y=9;if(x==y)
cout<<"true";
else
cout<<"false";
return 0;
}
Answers
Answered by
0
Answer:
false
Explanation:
10 not equal to 9
so it prints false
Similar questions