GATE 1999
[closed]

in Programming in C closed by
336 views
0 votes
0 votes
closed as a duplicate of: GATE CSE 1999 | Question: 2.24
Consider the following C function definition:

int trial (int a,int b,int c)
{
if ((a>=b) && (c<b)) return b;
else if (a>=b) return Trial(a,c,b);
else return Trial(b,a,c);
}
The function Trial :
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 these
in Programming in C closed by
336 views

Related questions