Report Bug
Qus : How to write an IF statement for executing some code if "i" is NOT equal to 5?
QusHow to write an IF statement for executing some code if "i" is NOT equal to 5?

A. if (i <> 5)
B. if (i != 5)
C. if i =! 5 then
D. if i <> 5


Solution
B. if (i != 5)






Report Bug