/* Write A C Program To Accept A List Of

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View /* Write A C Program To Accept A List Of as PDF for free.

More details

  • Words: 273
  • Pages: 2
/* Write a C program to accept a list of data items and find the second largest and second smallest elements in it. And also computer the average of both. And search for the average value whether it is present in the array or not. Display appropriate message on successful search. #include <stdio.h> void main () { int number[30]; int i,j,a,n,counter,ave; printf ("Enter the value of N\n"); scanf ("%d", &n); printf ("Enter the numbers \n"); for (i=0; i
* * * */

/*------------------------------------------------------Output Enter the value of N 6 Enter the numbers 30 80 10 40 70 90 The numbers arranged in descending order are given below 90 80 70 40 30 10 The 2nd largest number is = 80 The 2nd smallest number is = 30 The average of 80 and 30 is = 55 is not in the array -------------------------------------------------------*/

Related Documents