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