0
1.1kviews
Write a program to display the multiplication table of a user entered number
1 Answer
0
27views
#include<stdio.h>
#include<conio.h>
void main()
{
int i,n;
clrscr();
printf("Enter a number: ");
scanf("%d",&n);
for(i=1;i<=10;i++)
{
    printf("%d X %d = %d\n",n,i,(n*i));
}

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.