C localization functions: Difference between revisions

Content deleted Content added
Line 57:
}
 
#SYNTAX OF USING A FUNCTION:
==Example==
return_type function name(arguments list)
arguments declaration;
{
local declaration;
body of function;
return (value);
}
 
 
 
 
==Example==
<source lang="cpp">
#include <stdio.h>