C program to write multiplication table of any integer





#include <stdio.h>
int main() {
int a,b = 0;
printf("|.......MATHMATICS TABLE......|\n");
printf("which mathmatics table do you want , enter any integer   :- ");
scanf("%d" , &b);
for (int i =1 ; i <= 10 ; ++i) {
a = b*i;
printf("%d\n",a); }
return 0;
}