Showing posts with label Find out greatest or smallest element from the array element. Show all posts
Showing posts with label Find out greatest or smallest element from the array element. Show all posts

Thursday, December 11, 2014


//WAP TO FIND GREATEST AND SMALLEST ELEMENT IN THE ENTERED ARRAY 



#include<stdio.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("Largest element: %d\n",big);

  small=a[0];
  for(i=1;i<size;i++){
if(small>a[i])
 small=a[i];
  }
  printf("Smallest element: %d",small);

  return 0;
}