Monday 16 July 2012

C program to find largest number of a list of numbers entered through keyboard


C program to find largest number of a list of numbers entered through keyboard


#include<stdio.h>
#include<conio.h>


void main()
{
int i,n,x,large=0;
clrscr(); //to clear the screen

printf("How many numbers?");
scanf("%d",&n);
for(i=0;i<n;++i)
{
printf("\nEnter number %d:",i+1);
scanf("%d",&x);
if(x>large)
large=x;
}


printf("\n\nThe largest number is %d",large);
getch(); //to stop the screen
}


Related Posts Plugin for WordPress, Blogger...