USER- DEFINED FUNCTIONS Flashcards
Lecture 13
What are functions
Subroutine which may be called from within other
functions
Function format
return type name (argument declarations list) {
function body
}
‘return’ value function
To obtain a value from a function use the function return
no return type or arguments use type void
Input arguments/parameters
Used to convey values
from the calling program to the function
function body
Variables other than arguments are declared within the body,
which is bounded by braces.
Argument declaration
The argument declaration list is a comma separated list of
variable declarations.
How to call function
Stating its name followed by the function call operator, which may enclose any possible parameters which need to be passed to the function.
Example of function layout
int diff (int x, int y)
/* function name and
argument list */
{
int z;
//declare local
variables
z = x – y;
return z;
}