Kizspy | Question: 13
(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");
}
A. Hi
B. How are you
C. Hello
D. HiHello
FUOVERFL