What is the output of the following program?
# include <stdio.h>
int main ( )
{
int i = 1 ;
while ( i <= 10 ) ;
{
printf ( "%d\n", i ) ;
i = i + 1 ;
}
Answers
Answered by
0
Answer:
I DON'T NO WHAT IS THE ANSWER OF THIS QUESTION ⁉️⁉️⁉️⁉️⁉️⁉️
Answered by
3
Answer:
The Output will be:
1
2
3
4
5
6
7
8
9
10
and when the value of i will become 11 the loop will terminate because condition is i<=10
So, 11<=10 condition is false
Hope it helps....
Similar questions