What is the output of the following program?


Loading

โœช Choose the correct option.

What is the output of the following program?


void main()

{

int B, X, Y, Z;

X=1; Y=2; Z=3;

jf ((X > 1) || (Y > 1))

if (Z > 1)

printf ("O.K /n");

else break;

if((X > 1 && (Z > 3))

printf ("Bye /n");

printf ("Hello!");

}

A. O.K. bye
B. Bye.
C. O.K. Hello
D. Hello.