Skip to main content

C programme to accept a list of data items

So these is the first Post on this Blog and let us look at these simple c programming  Code.


/* Write a C programme to accept a list of data items & find the IInd   largest & II smallest in it & 
take average of both & search for that   value. display appropriate message on successful search.*/


main ()
{
  int i,j,a,n,counter,ave,number[30];
  printf ("Enter the value of N\n");
  scanf ("%d", &n);
  printf ("Enter the numbers \n");
  for (i=0; i<n; ++i)
  scanf ("%d",&number[i]);
  for (i=0; i<n; ++i)
  {
    for (j=i+1; j<n; ++j)
      { if (number[i] < number[j])
  { a        = number[i];
   number[i] = number[j];
   number[j] = a;
  }
      }
  }
  printf ("The numbers arrenged in ascending order are given below\n");
  for (i=0; i<n; ++i)
  printf ("%10d\n",number[i]);
  printf ("The 2nd largest number is  = %d\n", number[1]);
  printf ("The 2nd smallest number is = %d\n", number[n-2]);
  ave = (number[1] +number[n-2])/2;
  counter = 0;
  for (i=0; i<n; ++i)
   {
     if (ave==number[i])
     ++counter;
   }
  if (counter==0)
  printf ("The average of 2nd largest & 2nd smallest is not in the array\n");
  else
  printf ("The  numbers of average of 2nd largest & 2nd smallest in array is %d in 
numbers\n",counter)
}

Comments

Popular posts from this blog

Defination of the essential properties of operating systems

Define the essential properties of the following types of operating sys-tems:  Batch  Interactive  Time sharing  Real time  Network  Parallel  Distributed  Clustered  Handheld ANSWERS: a. Batch processing:-   Jobs with similar needs are batched together and run through the computer as a group by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at all times through buffering, off-line operation, spooling, and multi-programming. Batch is good for executing large jobs that need little interaction; it can be submitted and picked up later. b. Interactive System:-   This system is composed of many short transactions where the results of the next transaction may be unpredictable. Response time needs to be short (seconds) since the user submits and waits for the result. c. Time sharing:-   This systems uses CPU scheduling and multipro-gramming to provide econ...

AirBnB Infographic Journey to IPO

  Full Post at  https://techpomelo.com/2020/10/infographics-airbnb-milestone-journey-to-ipo/