Question
Program in C Write a program that take in two numbers and calls the powerTo function defined below. Your main method should do the following:
Program in C
Write a program that take in two numbers and calls the powerTo function defined below. Your main method should do the following: Ask the user to enter a decimal number, with the following prompt "Please enter a decimal number". Use puts() for this function. Store the decimal in the double variable Ask the user to enter an integer, with the following prompt "Please enter an integer number". Use puts() for this function. Store the integer in an integer variable. Call the powerTo function with the double and integer supplied by the user. Store the result in a variable and print out value in the statement: "The result is {the result of the calculation}". Write the definition of a function powerTo, which receives two parameters. The first is a double and the second is an int. The function returns a double. If the second parameter is negative, the function returns 0. Otherwise it returns the value of the first parameter raised to the power of the second.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started