City Suvidha...your one stop Search

C Programs

Go Back to List

Program to find the maximum no in an array.

 


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

void main()
{
int a[5],max,i;
clrscr();
printf("enter element for the array: ");
for(i=0;i<5;i++)
scanf("%d",&a[i]);
max=a[0];
for(i=1;i<5;i++)
{
if(max<a[i])
max=a[i];
}
printf("maximum no= %d",max);
getch();
}



 

Output:


enter elements for array: 5
4
7
1
2
maximum no= 7


 

If any of you want to submit your programs and contribute to site please mail us at:

citysuvidha@gmail.com

  Click here to have a look at  List of programs

You can download all the programs in a zip file also. For this you have to do one thing. Just register at the citysuvidha forum  and start any thread of any topic.  Once you start the thread and put your request, admin will automatically send you the desired zip file.