Question: Problem 4: Write the function int cubeplus1(int x); that takes an integer x as argument and returns the result of the expression ( x 3
Problem 4:
Write the function int cubeplus1(int x); that takes an integer x as argument and returns the result of the expression ( x3 + 1) . Write a main program to test the working of your function. The main() program asks the user to input an integer number, and then it calls the function cubeplus1(). All user inputs and printing of final result should be done in the main().
Sample output:
Enter an integer : 4
Result is : 65
c++
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
