Problem 01: Write a for loop which will print the following numbers:
100
90
80
.
Source code
#include <stdio.h> int main() { for(int i=100;i>=0;i=i-10){ printf("%d\n",i); } return 0; }
Output
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