Top

Discussion

What will be the output of the program?

#include
int main()
{
    float a = 0.7;
    if(0.7 > a)
        printf("Hi\n");
    else
        printf("Hello\n");
    return 0;
}

 

  • A.Hi
  • B.Hello
  • C.Hi Hello
  • D.None of above

Answer: A

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment