Code:argument = values
values have types int, float, long, double, unsigned intenger, etc
Specify those value types when you define the function.
function prototype
return name ( take in )
{
}
You pass a value of that type to the function when you call the function?
What I take in or what I return in the function prototype?

