Program to find maximum and minimum elements in an array in C-language

Program to find maximum and minimum elements in an array in C-language

#include<stdio.h>
int main()
{
    int i,a[10],n,min,max=0;
    printf("Enter the size limit maximum is 10\n");
    scanf("%d",&n);
    printf("Enter the array element\n");
    for(i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
    min=a[0];
    for(i=0;i<n;i++)
    {
       if(max<a[i])
        {
            max=a[i];
        }
        else if(min>a[i])
        {
            min=a[i];
        }
    }
    printf("Maximum is  %d minimum is %d",max,min);
    }

OUTPUT
Enter the size limit maximum is 10
4
Enter the array element
6
9
0
1
Maximum is 9 minimum is 0

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language