Computer Science, asked by gurbhej98singh, 11 months ago

1. Write a program to print multiplication table of any number? Sample I/P:

Answers

Answered by Dheerender
0

Answer:

* 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);

Explanation:

Mark it as brainlest

Similar questions