write a program to take a number from user and display it's multiplication table.
Question of class 7.
Answers
Answered by
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
Computer Science,
3 months ago
Social Sciences,
3 months ago
History,
3 months ago
Science,
7 months ago
Science,
7 months ago