Showing posts with label Program to find the maximum number in array using pointer.. Show all posts
Showing posts with label Program to find the maximum number in array using pointer.. Show all posts

Find the maximum number in array using pointer.

Program to find the maximum number in array using pointer.
#include<stdio.h>
#include<conio.h>
void main()
{
int max,i,*a[5];
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