Assume a function addOne that accepts a single integer reference parameter and returns nothing.
Call the function, passing it the variable i which has already been declared.

Respuesta :

Answer:

addOne(i)

Explanation:

to call a function write the name followed by set of parenthesis passing the argument.