This program is about reverse and print the given number using For Loop
#include<stdio.h> int main() { int n,i=1; printf("\nEnter the limit:"); scanf("%d",&n); for(n;n>=i;n--) { printf("\n%d",n); } return 0; }To download raw file Click Here
Enter the limit : 12 12 11 10 9 8 7 6 5 4 3 2 1
Learn All in Tamil © Designed & Developed By Tutor Joes