#include <stdio.h>

int main() 
{
    int i,j,t,a;
    printf("Enter the table number you want to see:\n");
    scanf("%d",&j);
    printf("Enter the multiplication limit: \n");
    scanf("%d",&t);
    i=1;
    do 
        {
            a=i*j;
            printf("%d * %d =%d\n",i,j,a);
            i+=1;  
        }
    while (i<=t);
        {
            printf("---------------------");
           }
    return 0;
}

Embed on website

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