You are on page 1of 1

#include<stdio.

h>

#include <conio.h>

void tabla (int a) {

for (int i=1; i<=10; i++)

printf ("%d * %d= %d\n",a,i,(a*i));

main (){

int numero;

printf ("digita un numero entero");

scanf ("%d",&numero);

tabla (numero);

getch ();

You might also like