168) Consider the function
find ( int x, int y)
{
return (( x < y ) ? 0 : ( x - y ));
}
Let a, b be two non-negative integers.
The call find{ a, find(a, b)} can be used to find the
Answer is:
minimum of a, b
Related C Programming MCQ with Answers
Answer is:
find(a, b) + find (b, a)
Answer is:
all of the above
Explanation:
Functions
* helps to avoid repeating a set of statements many times
* enhances the logical clarity of the program
* helps to avoid repeated programming across programs
Answer is: