English, asked by sonydivya, 11 months ago

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 devipoonam83252
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