C Program to print Multiplication table using do- while loop
/*C Program to print Multiplication table using do- 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);
do{
printf("\n %d x %d = %d", num, i, num * i);
i++;
}while (i <= 10);
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 do-while loop
do-while loop
multiplication table
MULTIPLY TABLE
print a table
table print
Wrong use * instead of × or change output
ReplyDelete