write a program to print the table of the number 10
Answers
Answered by
0
Answer:
10
20
30
40
50
60
70
80
90
100
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;
}
Similar questions
Geography,
3 hours ago
Math,
3 hours ago
Math,
3 hours ago
English,
5 hours ago
Biology,
5 hours ago
India Languages,
8 months ago
Sociology,
8 months ago
Social Sciences,
8 months ago