C localization functions: Difference between revisions

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==
return_type function name (arguments list)
argument declaration;
{
local decleration;
body of function;
return (value);
}
 
=Example==