0
C++
write the following code using while loop insteed of for statement for(int i=100; i>0; i--) { printf("%d\n", i); }
3 Answers
+ 2
You should write yourself
write the following code using while loop insteed of for statement for(int i=100; i>0; i--) { printf("%d\n", i); }