programming-examples/c/Functions/C Program to Find largest of two numbers using functions.c

22 lines
426 B
C
Raw Normal View History

2019-11-15 12:59:38 +01:00
#include<stdio.h>
void main()
{
void max();
max();
}
void max()
{
int a[5],max,n,i;
printf("How many nos you want to enter: ");
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<5; i++)
{
if(max<a[i])
max=a[i];
}
printf("maximum no= %d",max);
}