#include <stdio.h>
int main()
{
    int i,j,n;
    printf("Enter an integer: \n");
    scanf("%d", &n);
    printf("Enter the limit:\n");
    scanf("%d",&j);
    for (i=1;i <= j;i++)
      {
          printf("%d * %d = %d \n",i,j,i*j);
      }
  return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: