9. Using the online compiler
• Write a program that counts down from 100 to 0 using a for a loop.
#include <stdio.h> int main() { int i; for(i = 100; i >= 0; i--) printf("%d\n", i); return 0; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment