Question: Using C Programming and #include Bonus Question Write a recursive function recurPower (base, exp) that calculates the exponential value for base, base exp, by recursively


Using C Programming and #include
Bonus Question Write a recursive function recurPower (base, exp) that calculates the exponential value for base, base exp, by recursively calling itself. Formulas: if exp = 0, baseexp= 1 if exp > 0, baseexp = base * base exp-1 Now, modify your recursive function above to use the following formulas: Formulas: if exp = 0, baseexp= 1 > 0 and exp is odd, baseexp= base * base exp-1 if exp > 0 and exp is even, base exp = (base?)exp/2 if exp Bonus Question A strong password must contain: at least 8 characters long at least one uppercase alphabet A-Z at least one lowercase alphabet a-z at least a number 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 at least one symbol ~!@#$%^&* () _ - + = {}[]\]:;"',.?/ . . Write a C program to validate whether a newly created password is strong. If not, your program should prompt the user to recreate a strong password that meets the above criteria. Hint:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
