Translate

Labels

Showing posts with label MULTIPLICATION TABLE USING C. Show all posts
Showing posts with label MULTIPLICATION TABLE USING C. Show all posts

Wednesday, 20 March 2013

MULTIPLICATION TABLES OF A RANGE OF NUMBERS

#include<stdio.h>
#include<conio.h>
void main()
{
int m,n,j,i,p;
clrscr();
printf("Enter lower limit \n");
scanf("%d",&m);
printf("Enter upper limit \n");
scanf("%d",&n);
for(i=m;i<n;i++)
{
for(j=1;j<=10;j++)
{
p=i*j;
printf("%4d",p);
}
printf("\n");
}
getch();
}
OUTPUT
Enter Lower limit
5
Enter upper limit
10
5     10     15     20     25     30     35     40     45     50
6     12     18     24     30     36     42     48     54     60
7     14     21     28     35     42     49     56     63     70
8     16     24     32     40     48     56     64     72     80
9     18     27     36     45     54     63     72     81     90
10   20     30     40     50     60     70     80     90     100      

Saturday, 22 December 2012

A C PROGRAM TO PRINT MULTIPLICATION TABLE


main()
{
int x,n,z;
for(x=1;x<=3;x++)
{
printf("\n Multiplication table for%d:",x);
for(n=1;n<=10;n++)
{
z=n*x;
printf("\n%d*%d=%d",x,n,z);
}
getch();
}
}

  • By above program you can print so many tables as your need.
  • In this program, x is multiplier
  •                            n is multiplicand
  •                            z is product.
  • It is the nested for loop program, the first for loop is used to determine the multipliers which the user requires.second for loop is used to determine the multiplicand.
  • z=n*z    in this statement the multiplicand and the multiplier are multiplied and then the value is assigned to the product(Z).