C program to find maximum and minimum number from an array

Simple C program to find maximum and minimum number from an array

Code:

#include<stdio.h>

#include<conio.h>

int main()

{

int a[50],size,i,big,small;



printf("\nEnter the size of the array: ");

scanf("%d",&size);

printf("\nEnter %d elements in to the array: ", size);

for(i=0;i<size;i++)

scanf("%d",&a[i]);



big=a[0];

for(i=1;i<size;i++){

if(big<a[i])

big=a[i];

}

printf("\nLargest element: %d",big);



small=a[0];

for(i=1;i<size;i++){

if(small>a[i])

small=a[i];

}

printf("Smallest element: %d",small);



getch();

}

Comments

Popular posts from this blog

C program to evaluate Prefix Expression using Stack data structure

Servlet Program to Print Today’s Date and Time using refresh header

Java Program to Implement sorting algorithm using TCP on Server application