The body of the function or function body is enclosed in
braces. The function body or body of the function contain statements,
declaration and return statements. Return statements depend upon the function
type.
ex:
int add( int x, int y)
{
int
sum;
sum = a
+ b;
return
sum;
}
No comments:
Post a Comment