In this program, we print the number from 1 to 10 in Reverse Order with diff. of 2 by using for loop.
//Print no. 1 to 10 in Reverse Order with diff. of 2 #include<stdio.h> #include<conio.h> void main() { int m; for(m=10;m>=2;m=m-2) printf(" %d",m); getch(); }
10 8 6 4 2
Copy Program