Kizspy | Question: 14
(Choose 1 answer)
What will be the output of the following C code?
#include <stdio.h>
void main()
int x = 0;
if (x == 0)
printf("Hi");
else
printf("How are you");
printf("Hello");
PJOVERFLOW.COM
}
A. Hi
B. How are you
C. Hello
D. HiHello