Report Bug
Qus :

What is the output of the following code?

int a = 5, b = 10;
if (a < b)
printf("a is less than b");
else
printf("a is greater than or equal to b");

Qus

A. a is greater than or equal to b
B. a is less than b
C. Compiler Error
D. Undefined


Solution
B. a is less than b






Report Bug