Content deleted Content added
Line 46:
(ii) RETURN : By using return statement ,the result is sent back to its calling function
4.Call by reference.
SYNTAX OF USING A FUNCTION:
return_type function name(arguments list)
arguments declaration;
{
local declaration;
body of function;
return (value);
}
==Example==
|