Home
User Guide
DB Recovery
Download
Documents
FAQ
Books
About Me
C Programs
Stats

/* Program# 62
   date : 28-12-2008
   Biggest of 10 nos
	
*/

#include 
main(){
int n,no,big;
n=1;
big=0; //Will fail if all inputs are less than zero
while(n<10){
scanf("%d",&no);
if(no>big)
big=no;
n=n+1;
}
printf("\n Big =%d",big); 
}





Powered by
Open Source Programmers