Consider the following c function definition:
int func(int a,int b,int c)
{
if((a>=b)&&(c
else if(a>=b)return func(a,c,b);
else return func(b,a,c);
}
the function func();
a)finds the maximum of a,b,&c
b)finds the minimum of a,b,&c
c)finds the middle number of a,b,c
d)none of the above
Answers
Answered by
0
none of the above
.......
Similar questions