This topic contains 0 replies, has 0 voices, and was last updated by EduGorilla 1 year, 11 months ago.
- AuthorPosts
- Select Question Language :
What does the following function return?
int f( )
{
int a, b, c;
if (a > b)
if (a > c)
if (c > b) return c;
else return b;
else return a;
else if(c > a)
if (c > b ) return b;
else return c;
else return a;
}Options :-
- minimum (a, b, c)
- maximum (a, b, c)
- middle (a, b, c)
- gcd (a, b, c)
Post your Training /Course EnquiryAre You looking institutes / coaching center for- IIT-JEE, NEET, CAT
- Bank PO, SSC, Railways
- Study Abroad
- AuthorPosts