Computer Science, asked by siladas9902, 1 year ago

Write a program to display multiplication table of any no.

Answers

Answered by revanthgandhe72
0

The program output is also shown below.

*1. C Program to Find & Display Multiplication table.

2.{

3.int number, i = 1;

4.printf(" Enter the Number:");

5.scanf("%d", &number);

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

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

while (i <= 10)

Similar questions
Math, 1 year ago