Keyword used to transfer control from a function back to the calling function - return
Q. C++: The keyword used to transfer control from a function back to the calling function is- Published on 24 Jun 15a. switch
b. goto
c. go back
d. return
ANSWER: return
The return statement terminates the execution of a function and it returns the control to the calling function. The execution resumes in the calling function at a point immediately following the call.