Question: Please do not copy and paste another Chegg answer to answer this question . C++ - Please comment in code. Keep functions under 20 lines.
Please do not copy and paste another Chegg answer to answer this question.
C++ - Please comment in code. Keep functions under 20 lines. Allowable libraries include:


Part 2: Recursive Fractals Examine this pattern of asterisks and blanks, and write a recursive function called pattern() that can generate patterns such as this: pattern(3, 2); * * * pattern(5, 1); * * * * * * * * * * * * * pattern(7, 0); * * * * * * * * * * * * * * * * * * * * * * * * With recursive thinking, the function needs only about 10 lines of code (including two recursive calls). Your function prototype should look like this: // Description: // The longest line of the pattern has n stars beginning in column col of the output. // Precondition: n is an positive odd number. // Postcondition: A pattern based on the above example has been printed. void pattern (int n, int col)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
