Report Bug
Qus :

What is the output of the following code?

int x = 5;
if (x > 3) {
 printf("Greater than 3");
 } else {
 printf("Not greater than 3");
 }

Qus

A. Greater than 3
B. Not Greater than 3
C. Error
D. No Output


Solution
A. Greater than 3






Report Bug