Find the output of the following code in C language, if assumed that all preprocessor directives are correct.
void main ( )
{
int a = 2, b = 2;
if (a > 2)
if (b > 2)
printf ( "Hello");
Else
Printf ("Hi");
}
Reveal answer
Fill a bubble to check yourself