C program to print table of numbers from 1 to 20
This program will print table of numbers from 1 to 20 using nested looping. There are two loops using parent loop to run from 1 to 20 and child loop to run from 1 to 10 to print table of corresponding number which is coming from parent loop.
Print table from 1 to 20 using C program
Output