Problem
Write a program in C to generate a multiplication table of a number entered by the user.
How to generate a multiplication table for a input number in C ?
Here’s a program that takes an input from the user and generates a multiplication table for it up to 10.
#include <stdio.h>
int main()
{
printf("Abundantcode.com's Coding sample\n");
int input, index;
printf("Enter a Number: ");
scanf("%d",&input);
for(index=1; index<=10; ++index)
{
printf("%d * %d = %d \n", input, index, input*index);
}
return 0;
}Output
Abundantcode.com’s Coding sample
Enter a Number: 12
12 * 1 = 12
12 * 2 = 24
12 * 3 = 36
12 * 4 = 48
12 * 5 = 60
12 * 6 = 72
12 * 7 = 84
12 * 8 = 96
12 * 9 = 108
12 * 10 = 120
Leave a Reply