227k views
0 votes
You have to write a prototype/declaration for a function named get_min of void return type. You have to pass the array and the variable to hold the smallest value to get_ min function. o Think if the second parameter needs to be passed by reference o Note that SIZE is a global constant and it does not need to be passed to get_min. 

1 Answer

3 votes

Answer:

void get_min(int [], int* );

void get_min(int [], int& );

Step-by-step explanation:

The second parameter has been passed by reference.

Two solutions are given for prototype.

User Danny Kopping
by
3.7k points