Q. What is the output of the C Program.?
Code:
int main()
{
if( 4 > 5 )
{
printf("Hurray..\n");
}
printf("Yes");
return 0;
}
β
Correct Answer: (A)
Yes