Computer Science, asked by atulya30, 7 months ago

write a program to take a number from user and display it's multiplication table.
Question of class 7.​

Answers

Answered by monikaaadi81
2

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

Please mark me as brainliest

Thank you and have a nice day

Similar questions