how to display the multiplication table of 9 in c online compiler
Answers
Answered by
1
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:
mark as brainliest plz...
Similar questions
Math,
5 months ago
Environmental Sciences,
5 months ago
Computer Science,
10 months ago
Biology,
10 months ago
History,
1 year ago
Math,
1 year ago