Ask your own question, for FREE!
Computer Science 57 Online
OpenStudy (anonymous):

who can help me solve this question?.. By using the for loop statement, write a full C program algorithm that will display the output as per below. Counting down to 5 Counting down to 4 Counting down to 3 Counting down to 2 Counting down to 1 please help me..

OpenStudy (anonymous):

#include<stdio.h> int main(){ int s; for(s=5;s>0;s--){ printf("Counting down to %d\n",s); } return 0; }

OpenStudy (anonymous):

tq for your help..

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!