First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

What will be the output of the following code ?

#include
void main()
{
int x =5;
if (x == 5)
printf("hi\n");
else
printf("how are u\n");
printf("hello\n");
}
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...