CP I/O Q27

0. The following program
main ()
{
 float a = .5, b = .7;
 if (b < .7)
{
 if (a < .5)
  printf("TELO");
 else
  printf("LTTE");
}
 else printf("JKLF");
}

  • Option : A
  • Explanation :
    It will print 'LTTE' as a and b are of float type.
Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *