Answer:
c. RETURN (count)
Step-by-step explanation:
A typical return statement performs the function of terminating the execution of a function and returns control to the calling function.
Hence, there will execution resumed in the calling function at the point immediately following the call.
Another thing a return statement can do is to also return a value to the calling function.
The code RETURN (count) will
terminating the execution of a function and returns control to the calling function.