Computer Science, asked by RahlaBaskey, 5 hours ago

write a program to print the table of the number 10​

Answers

Answered by surekhabadgujar36
0

Answer:

10

20

30

40

50

60

70

80

90

100

Answered by SilentWraith2678
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