โช 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");
}