#include <stdio.h> void print_table(int range, int num) { // Declaring a variable mul to store the product. int mul; // For loop to calculate the Multiplication table. for (int i = 1; i <= range; i++) ...
Successfully merging a pull request may close this issue. Added Rust program to print multiplication table Added Rust program to print multiplication table ...