[data type] function name (argument list) argument declaration; { local variable declarations; statements; [return expression] } Example : mul(a,b) int a,b; { int y; y=a+b; return y; }When the value of y which is the addition of the values of a and b. the last two statements ie,