#include <stdio.h>
int main()
{
int i=1,num;
scanf("%d",&num);
printf("Enter the value of num=%d\n",num);
printf("The table of %d:\n",num);
while(i<=10)
{
printf("%d*%d=%d\n",i,num,(i*num));
i++;
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: