1.

What is return statement with example?

Answer»

The return statement stops execution and returns to the calling function. When a return statement is executed, the function is terminated immediately at that point. The return statement is used to return from a function. It is categorized as a jump statement because it terminates the execution of the function and transfer the control to the called statement.

Example:

return(a + b); return(a);

return; // to terminate the function



Discussion

No Comment Found