Consider the following function definition:
```
void tripler(int& n)
{ n = 3*n;
```
a) tripler(a[2]);
b) tripler(a[3]);
c) tripler(a[number]);
d) tripler(a);
e) tripler(number);
a) tripler(a[2]);
c) tripler(a[number]);
Computer Science & Information Technology
You might also like to view...
The Clear All Formatting button is located on the ________ tab
A) Format B) Home C) File D) View
Computer Science & Information Technology
Which of the following pieces of information is generally provided by a Web feed?
A) a link to the full article B) author's biography C) editor D) place of publication
Computer Science & Information Technology