How many times "hello" will be printed when the following code is executed ?
# include<stdio.h>
int main ()
{
int i=6;
while (--i>0)
printf("Hello")
return 0;
}
a) 5
b)6
c)7
d) nothing will be printed
Answers
Answered by
1
Explanation:
I think it's option (d)
I am not sure !!!!!!!!!!!!!
Answered by
1
Answer:
Please Follow me And like
b)6
It is the correct answer
Similar questions