#include <stdio.h>
#include <stdlib.h>
int main(){
int n, m=1,r;
printf("Tabuada de: ");
scanf("%i",&n);
for(m;m<=10;m++){
r=n*m;
printf("%i x %i = %i",n,m,r);
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: