Question: For C++ Write the definition of a function named countPos that reads all the integers remaining to be read in standard input and returns the
For C++ Write the definition of a function named countPos that reads all the integers remaining to be read in standard input and returns the number that are positive. So if the input was: 19 -5 -3 -251 14 -7 -14 6 the function would return 3 because there are 3 positive integers there.
The function must not use a loop of any kind (for, while, do-while) to accomplish its job. It has to be recursive. Only need the funtions header and it's defintion, not the entire program.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
