Question: which of the function definition will return the pointer pointing to the largest value of an integer array? a b c d int * find_largest(int

which of the function definition will return the pointer pointing to the largest value of an integer array?
a which of the function definition will return the pointer pointing to the
b
largest value of an integer array? a b c d int *
c
find_largest(int *a, int n) { { int *largest = a; int *p;
d
for (p = a+1; p *largest ) largest = p; return largest;

int * find_largest(int *a, int n) { { int *largest = a; int *p; for (p = a+1; p *largest ) largest = p; return largest; } int * find_largest(int *a, int n) int *largest = a; int *p; for (p = a+1; p *largest ) *largest = *p; return largest; } int * find_largest(int *a, int n) { int *largest = a; int *p; for (p = a+1; p largest) "largest = *p; return largest; } int * find_largest(int *a, int n) { int "largest = a; int *p; for (p = a+1; p largest ) largest = p; return largest; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!