What value is returned by the method named result? int result(int[ ] anArray, int num) { int
Question:
What value is returned by the method named result?
int result(int[ ] anArray, int num)
{
int i, r;
for (r = 0, i = 1; i < num; ++i)
if (anArray[i] > anArray [r] )
r = i;
return (r);
}
a. the index of the largest of the first num elements of array anArray
b. the value of the largest of the first num elements of array anArray
c. the index of the smallest of the first num elements of array anArray
d. the value of the smallest of the first num elements of array anArray
e. the index of the last element greater than its predecessor within the first num elements of array anArray
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: