Computer Science, asked by bd6543974, 9 months ago

write the use of Return statement​

Answers

Answered by AnnieStar
66

Answer:

Use of return statement

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.

Answered by arajanand123
1

Answer:

The return statement terminates the execution of a function and returns control to the calling function. Execution resumes in the calling function at the point immediately following the call. A return statement can also return a value to the calling function. See Return Type for more information.

Similar questions