write a program to accept a number from the user and print the table of that number
Answers
Answered by
2
Answer:
I can't understand this
Answered by
1
Answer:
C Program to Find & Display Multiplication table
- * 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