Write a program to find the largest and smallest number among the given elements

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int i=0,r=0,n=0,l=0,s=0;
  printf("\n Enter the range:");
  scanf("%d",&r);
  printf("\n Enter element 1 :");
  scanf("%d",&n);
  l=s=n;
  for(i=1;i<r;i++)
  {
      printf("\n Enter element %d :",(i+1));
      scanf("%d",&n);
      if(n>l)
         l=n;
      if(n<s)
         s=n;
  }
  printf("\n The larrgest and smallest of %d numbers are %d and %d",r,l,s);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code