Question: Write a recursive function in C to print a right angled triangle consisting of * on the first line, then one more on each line
Write a recursive function in C to print a right angled triangle consisting of "*" on the first line, then one more on each line until it displays a line with n *s without the use of for-statements, while-statements or do-while statements. Example: DrawTriangle(4) would display:
*
**
***
****
*****
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
