Ask Question
10 December, 09:15

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. 

+5
Answers (1)
  1. 10 December, 11:36
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers