Write a program to accept any number and print the multiplication table of that numbers in tabular format.
in QB64
Answers
Answered by
0
Answer:
#include <stdio.h>
int main() {
int n, i;
printf("Enter an integer: ");
scanf("%d", &n);
for (i = 1; i <= 10; ++i) {
printf("%d * %d = %d \n", n, i, n * i);
}
return 0;
}
Explanation:
Similar questions