by R4R Team

-Here we find the mathematical table of the given integer number.

program-

#include< stdio.h>
#include< string.h>
int main()
{
int num,i;
printf("Enter number\n");
scanf("%d",&num);
//table
printf("Table of %d is\n",num);
for(i=1;i< =10;i++)
{
printf("%d * %d = %d\n",num,i,num*i);
}
}


output-

Enter number
3
Table of 3 is
3 * 1 = 3
3 * 2 = 6
3 * 3 = 9
3 * 4 = 12
3 * 5 = 15
3 * 6 = 18
3 * 7 = 21
3 * 8 = 24
3 * 9 = 27
3 * 10 = 30

-In this program, we just take an input of the integer number and store in num variable.
-We run for loop 10 times to get all multiple of input value.
-And display that table.




Leave a Comment: