C Program to print Multiplication table using do-while loop.

C Program to print Multiplication table using do- while loop
www.mskuthar.blogspot.com
Multiplication table

/*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

1 Comments

Previous Post Next Post