Question: Write a recursive function print that, given an integer number p > 0, prints counting forward from 1 up to that number. For example, if

 Write a recursive function print that, given an integer number p

Write a recursive function print that, given an integer number p > 0, prints counting forward from 1 up to that number. For example, if p = 5, the output should be 1 2 3 4 5 Write all numbers on the same line separated by spaces. If the input is 0, the function should produce no output. If the input is negative, inform the user by writing the message "Invalid input". End with a new line. Zero points will be given if your solution does not use Recursion #include using namespace std; void print(int p) //Complete recursive function int main() { return 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!