Quiz time!
1. Write a function called superpower that has two parameters of type long and returns a long which is first parameter raised to the power of the second, which is to say it returns ab
So, superpower(3,4) would return 81.
long superpower(long a, long b){
}
2. Write a function called stars that has one parameter of type int and PRINTS (the function does not return anything) that many stars on a single line followed by a end-of-line character, so if we call the function with stars(5), the function will print like this:
*****

CC BY 4.0 #Quiz06 by Alan S. Olalla is licensed under a Creative Commons Attribution 4.0 International License.