MULTIPLICATION TABLE USING 'C'
#include <stdio.h>
int main()
{
int num, i = 1,j;
printf("Enter Number:");
scanf("%d", &num);
printf("enter the digit");
scanf("%d",&j);
printf("Multiplication table of %d: ", num);
while (i <= j)
{
printf(" %d x %d = %d\n", num, i, num * i);
i++;
}
return 0;
}
