Program to find largest of two numbers using functions.

#include<stdio.h>
#include<conio.h>
void main()
{
void max();
clrscr();
max();
getch();
}
void max()
{
int a[5],max,n,i;
printf(“How many no’s you want to enter: ”);
scanf(“%d”,&n);
printf(“Enter element for the array: ”);
for(i=0;i