Trace the output
#include<stdio.h>
int main()
{
int n;
for(n = 9; n!=0; n--)
printf("n = %d", n--);
getchar();
return 0;
}
infinite loop
ОО
0 9 8 7 6 5 4 3 2 1
Answers
Answered by
0
Answer:
the output is
9
8
7
6
5
4
3
2
1
Similar questions