teach-ict.com logo

THE education site for computer science and ICT

Argument

A computer programming term

It is common for functions, subroutines and procedures to require data to be passed into them in order to carry out their task. Each piece of data is called an 'argument'.

A typical function might look like this: printme(item1, item2)

Item1 and Item2 are arguments of the printme function.

 

2021-09