Assuming a=5 b=6 what is the result of the following statement ((a! =b) &&(a>=b))
Answers
Answered by
1
Answer:
false
Explanation:
a!b = true && a>=b = false
true &&false
= false
Similar questions