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