write a for loop statement that initializes loop variable k as 100 decrement it by one in every pass and execute the loop body infinite number of time
gudan003pbcv9z:
plz answer this question as soon as possible
Answers
Answered by
6
for(int k=100;k>=1;k--){ printf("%d",k); }
Similar questions