C program to find the maximum no. in an array

Logic:
1. declare and Initialize the array
2. lets assume first number in the array is the biggest number and initialize value to max variable
3. Use loop to iterate  from 1st element to end of array element and check if the array element value is greater than max variable value then store the maximum value in max variable.
4. Display max value.

				
					#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

**************************

Leave a Reply