Exercise 6 [B(a)] LET US C SOLUTION

 Exercise [B(a)]

Write a program to print the multiplication table of the number 
entered by the user.The table should get displayed in the following
form:
29*1=29
29*2=58

...              */
#include<stdio.h>
int main()
{
	int n,i;
	printf("Enter an ingeter:");
	scanf("%d",&n);
	for(i=1;i<=10;i++)
	{
		printf("%d*%d=%d\n",n,i,n*i);
	}
	return 0;
}

Post a Comment

0 Comments