/*Write a program in C to display the multiplication table of a given integer*/
#include <stdio.h>

int main() {
   int j,n;
   printf("Input the number (Table to be calculated) : ");
   scanf("%d",&n);
   printf("\n");
   for(j=1;j<=10;j++)
   {
     printf("%d X %d = %d \n",n,j,n*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: