Computer Science, asked by mohamedsinan1110, 3 months ago

______ statement is used to exit a function and go back to the place from where it was called.

Answers

Answered by saritabakshig90
5

In computer programming, a return statement causes execution to leave the current subroutine and resume at the point in the code immediately after the instruction which called the subroutine, known as its return address.

.

.

Your answer

Answered by letmeanswer12
1

"Return Statement used to exit a function and go back to the place where it is called".

Explanation :  

The return statement ends the execution of a function and returns the command to the calling function. Execution resumes in the calling function at the point directly following the call. The return statement can return a value to the calling function, it's the process of the return statement.

The return statement establishes the return value for a function, and when executed it causes the function to leave immediately.

Similar questions