C Tutorial/Function/Function Definition
Syntax of function definition
The general format of a function is
<Return type> <Function name> <Parameter list>{
local definitions;
statements;
Return value;
}
The general format of a function is
<Return type> <Function name> <Parameter list>{
local definitions;
statements;
Return value;
}