Computer Science, asked by harsh00876, 1 year ago

write a loop which display the numbers to 20 to 1 i.e 20,19................1​

Answers

Answered by prynkadeb
3

for(i=20; i>=1; i--)

{

pintf("%d",i);

}

Similar questions