Write a program in C to display the multiplication table of a given integer with using loops
Write a program in C to display the multiplication table of a given integer with using loops #include <stdio.h>void main(){ int i, m, table = 1; printf(“Enter …