#include int main() { int i ,a , t; printf("Enter the no. of which you want the table to print\t"); scanf("%d",&a); for(i=1;i<=10;i++) { t=a*i; printf("%d * %d = %d \n ",a,i,t); } return 0; }