#include <stdio.h>
int main() {
int numero;
printf("Ingrese un número para imprimir su tabla de multiplicar hasta el 10: "); scanf("%d", &numero);
for (int i = 1; i <= 10; i++) {
printf("%d * %d = %d\n", numero, i, numero * i);
}
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: