Computer Science, asked by gudan003pbcv9z, 1 year ago

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 shoebrayeen8697
6

for(int k=100;k>=1;k--){ printf("%d",k); }

Similar questions