C Program to print Multiplication table using while loop.
/*C Program to print Multiplication table using while loop.*/#include <stdio.h>
#include <conio.h>
void main()
{
int num, i = 1;
printf("\n Enter any Number:");
scanf("%d", &num);
printf("Multiplication table of %d: \n", num);
while (i <= 10) {
printf("\n %d x %d = %d", num, i, num * i);
i++;
}
getch();
}
Expected Output:
5*1=5
5*2=10
5*3=15
5*4=20
5*5=25
5*6=30
5*7=35
5*8=40
5*9=45
5*10=50
Tags:
C Program to print Multiplication table using while loop
print a table
table using while loop
while loop
thank u sir
ReplyDelete