//Program in C to display multiplication table of a input number using for loop
#include <stdio.h>
int main(){
int i=1,a;
printf("Enter no. \n");
scanf("%d",&a);
for(;i<=10;i++)
{
printf("%d * %d = %d\n",a,i,i*a);
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: