Ask Question
17 July, 20:46

Code a call to the function anotherFunc passing the array myints.

a) anotherFunc (myints []);

b) anotherFunc (int myints);

c) anotherFunc (myints &);

d) anotherFunc (myints);

+1
Answers (1)
  1. 17 July, 22:45
    0
    d) anotherFunc (myints);

    Explanation:

    When we call a function we just have to pass the names of the arguments to the function. In case of arrays we also just have to pass the name of the array. We don't have to worry about the square brackets. So the function call will be like this.

    anotherFunc (myints);

    Hence the answer is option d.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Code a call to the function anotherFunc passing the array myints. a) anotherFunc (myints []); b) anotherFunc (int myints); c) anotherFunc ...” 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