This program is about reverse and print the tables using While Loop
#include<stdio.h> int main() { int i,n=1,m,a; printf("\nEnter the limit:"); scanf("%d",&i); printf("\nEnter the table's number:"); scanf("%d",&a); while(i>=n) { printf("\n%d*%d=%d",i,a,i*a); i--; } return 0; }To download raw file Click Here
Enter the limit:5 Enter the table's number:7 5*7=35 4*7=28 3*7=21 2*7=14 1*7=7
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions