Saved Bookmarks
| 1. |
Explain About The Return Statement? |
|
Answer» A RETURN statement is used to terminate the execution of a stored function. This INTURN returns a value of expr to the function CALLER. In a stored function there should be at LEAST a SINGLE return statement. If there exists multiple functions it can have multiple exit points. A RETURN statement is used to terminate the execution of a stored function. This inturn returns a value of expr to the function caller. In a stored function there should be at least a single return statement. If there exists multiple functions it can have multiple exit points. |
|