C program to find the maximum number in array using pointer

				
					#include<stdio.h> 
#include<conio.h> 
void main() 
{ 
int max,i,*a[15],n; 
clrscr(); 
printf(“enter no. of element for the array: ”); 
scanf(“%d”,&n); 
printf(“enter element for the array: ”); 
for(i=0;i<n;i++) 
scanf(“%d”,&*a[i]); 
max=*a[0]; 
for(i=1;i<n;i++) 
{ 
if(max<*a[i]) max=*a[i]; 
} 
printf(“maximum no= %d”,max); 
getch(); 
}
				
			

Output:
enter no. of element for the array:6
enter elements for array:
5
4
7
1
2
maximum no= 7 **************************

Leave a Reply