print multiplication table in c code example
Example: Write a C program that will print a multiplication table of given number
printf(" %d x %d = %d \n ", number, i, number * i);
printf(" %d x %d = %d \n ", number, i, number * i);