USER- DEFINED FUNCTIONS Flashcards

Lecture 13

1
Q

What are functions

A

Subroutine which may be called from within other
functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Function format

A

return type name (argument declarations list) {
function body
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

‘return’ value function

A

To obtain a value from a function use the function return

no return type or arguments use type void

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Input arguments/parameters

A

Used to convey values
from the calling program to the function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

function body

A

Variables other than arguments are declared within the body,
which is bounded by braces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Argument declaration

A

The argument declaration list is a comma separated list of
variable declarations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to call function

A

Stating its name followed by the function call operator, which may enclose any possible parameters which need to be passed to the function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Example of function layout

A

int diff (int x, int y)

/* function name and
argument list */

{
int z;
//declare local
variables

z = x – y;
return z;
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly