This C program uses a while loop to print the multiplication table of a given number. The user is prompted to enter the limit of the table (how many times the table should be printed) and the number for which the table is to be printed. The program uses two variables, "i" and "n", to control the while loop.
The loop starts with the value of "i" (entered by the user as the limit) and continues until "i" is greater than or equal to "n" (which is initialized as 1). Inside the loop, the program calculates the product of "i" and "a" (the number entered by the user), and prints the result. The value of "i" is then decremented by 1, and the loop continues until the condition is false. The final output is the multiplication table of the entered number, starting from the limit and decrementing till 1
#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