Functions
<type> <functionName> ( [type paramName], ... )
No “procedures” in C … only functions
Every function should have a prototype
Example:
float area( float width, float height );
float area( float width, float height )
{
return( width * height );
}