Write the definition of a function named printstarbucks that receives a non-negative integer n and prints a line consisting of n asterisks followed by n dollars signs. so, if the function received 5 it would print: *****$$$ and if received 3 it would print ***$$ the function must not use a loop of any kind (for, while, do-while) to accomplish its job.