Ask Question
17 December, 13:45

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
Answers (1)
  1. 17 December, 15:12
    0
    void get_min (int [], int*);

    void get_min (int [], int&);

    Explanation:

    The second parameter has been passed by reference.

    Two solutions are given for prototype.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “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 ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers