Ask 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 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. 22 November, 23:03
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers