Anatomy

return_type function_name(data_type_1 parameter_1, data_type_2 parameter_2)
{ // start function body
	// code to be executed
	return return_value;
} // end function body

Example

int five(){
	return 5;
}

Nested functions are NOT supported