Computer Science, asked by talkwithshirin40, 1 month ago

Write a program to display the multiplication table of any number entered by the user. ​

Answers

Answered by JBJ919
0

Answer:

Explanation:

Write a program in C to display the multiplication table of a given integer.

Answered by Zuwa
9

Answer:

The program output is also shown below.

* C Program to Find & Display Multiplication table.

int number, i = 1;

printf(" Enter the Number:");

scanf("%d", &number);

printf("Multiplication table of %d:\n ", number);

printf("--------------------------\n");

while (i <= 10)

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

Similar questions