169) Let a, b be two non-negative integers. Which of the following calls, finds the positive difference of a and b ?
Answer is:
find(a, b) + find (b, a)
Related C Programming MCQ with Answers
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:
Both The body of a function may have many return statements & A function can return only one value to the calling environment
Answer is: