C Program To Find Range of Set of Numbers
Satish B
http://technotip.com/7125/c-program-to-find-range-of-set-of-numbers/
Write a C program to find the range of a set of numbers entered through the keyboard. Range is the difference between the smallest and biggest number in the list.
Example: If biggest number in the list is 5 and smallest number in the list is 1. The difference between them is the range. i.e., 5 – 1 = 4. So range = 4.
Note: abs() returns the absolute value of a number. Absolute value is always positive.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=-yN6KsA8d-k
9367859 Bytes