Please find the output of the following program
#include
void main()
{
int a=0;
If(a==0)
printf(“Hi”)
else
printf(“How are you”);
printf("Hello”);
}
Answers
Answered by
0
Answer:
Hi
Explanation:
since a is equals to zero and the condition runs to be true you so it results the first statement
Similar questions