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

What will be the output of the following C code?

#include<stdio.h>
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

1 Answer

more_vert
 
verified
Best answer

Hi

Hello 


ouput for the program 

image

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...