Question: C++ recursion, not whole program, no int main! Write the definition of a function named printPowerOfTwoStars that receives a non-negative integer N and prints a
C++ recursion, not whole program, no int main!
Write the definition of a function named printPowerOfTwoStars that receives a non-negative integer N and prints a line consisting of "2 to the N" asterisks. So, if the function received 4 it would print 2 to the 4 asterisks, that is, 16 asterisks: **************** and if it received 0 it would print 2 to the 0 (i.e. 1) asterisks: * The function must not use a loop of any kind (for, while, do-while) to accomplish its job.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
