0
How to print the any multiplication table without using loop.
2 Answers
+ 1
You can use recursion or print it instead but there is no reason to do any of that in this case
0
as xaralampis_ mentioned...and use a static int variable that you increment and use in the multiplication expression in a printf statement inside your recursive function..