Find First and Second Biggest in N Numbers, without using Arrays: C Program
Satish B
http://technotip.com/6744/find-first-and-second-biggest-in-n-numbers-without-using-arrays-c-program/
Write a C program to find first and second biggest numbers in list of N numbers without using arrays and without sorting the list and by using while loop.
Logic To Find First and Second Biggest Number in N Numbers, without using Arrays: Once the value of limit is 0, control exits the while loop, and inside fbig we have first biggest number from the list of numbers entered by the user and sbig will have the second biggest number from the list of numbers entered by the user.
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=gs4YT-Qcw6k
6047809 Bytes