c program to print multiplication table of a number code example
Example 1: Write a C program that will print a multiplication table of given number
printf(" %d x %d = %d \n ", number, i, number * i);
Example 2: c program to print the multiplication table
#include <stdio.h>
int main(){
int a, b, c, e;
printf("Enter table format: \n");
scanf("%d", &a);
printf("Enter end of table: \n");
scanf("%d", &e);
for(b = 0; b <= e; b++){
printf("%d * % d = %d\n", b, a, a*b);
}
}