English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

We can use parameter passing by reference to

a. Return values from functions
b.Supply values to functions
c.Supply values to, and return values from, functions
d.All of the above
e.None of the above

2006-11-12 14:26:08 · 1 answers · asked by poodle 1 in Computers & Internet Programming & Design

1 answers

im new to this but i think parameters are what is put into a funciton in order for it to return something ex:

//function to find largest number of two

int largest(int one, int two)
{

if(one >two)
return one;

else
return two;


}

the parameters are int one and int two so i think the answer is

b.

2006-11-12 15:17:13 · answer #1 · answered by Hydronle 2 · 0 0

fedest.com, questions and answers