Computer Science, asked by alfiya78619, 9 months ago

write a program to generate multiplication table​

Answers

Answered by shrikavikamesh
2

Answer:

To understand this example, you should have the knowledge of following C programming topics:

C Programming Operators

C for Loop

The program takes an integer input from the user and generates the multiplication table up to 10.

Example #1: Multiplication Table Up to 10

#include <stdio.h>

int main()

{

int n, i;

printf("Enter an integer: ");

scanf("%d",&n);

for(i=1; i<=10; ++i)

{

printf("%d * %d = %d \n", n, i, n*i);

}

return 0;

}

Output

Enter an integer: 9

9 * 1 = 9

9 * 2 = 18

9 * 3 = 27

9 * 4 = 36

9 * 5 = 45

9 * 6 = 54

9 * 7 = 63

9 * 8 = 72

9 * 9 = 81

9 * 10 = 90

Similar questions