logo CodeStepByStep logo

You are working on problem set: Recursion Problems ( Pause)

printStars

Language/Type: C++ recursion

Write a recursive function named printStars that accepts an integer parameter n and prints n occurrences of the "*" character to the console. For example, the call of printStars(5); should print ***** . Do not use loops or auxiliary data structures; solve the problem recursively. You may assume that the value passed is non-negative.

Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? .

If something seems wrong with our site, please

Is there a problem? Contact us.