A

Admin • 833K Points
Coach

Q. The following function computes the maximum value contained in an integer array p[] of size n (n >= 1)

Code:
int max(int *p, int n)
{
int a=0, b=n-1;
while (__________)
{
if (p[a] <= p[b])
{
a = a+1;
}
else
{
b = b-1;
}
}
return p[a];
}
  • (A) a != n
  • (B) b != 0
  • (C) b > (a + 1)
  • (D) b != a
  • Correct Answer - Option(D)
  • Views: 20
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.