What is the output of the following program?


Loading

โœช Choose the correct option.

What is the output of the following program?


void main()

{

float balance, loan;

balance = 1000.0;

loan= balance/10;



if ((balance>500) || (loan < 500))

printf ("Good account/n ");

if (balance < 500) || (loan < 500)

printf("caution !/n");

}

A. Good account
B. Caution
C. Good account caution
D. None of these