21:57 -
Data Structures using C
Data Structures using C
Write a program in C using arrays to store a 10 integer data and find the second smallest and second largest elements in the array.
#include<stdio.h>
#include<conio.h>
/*function
declaration*/
largest_and_second_largest(int
list[],int &largest,int &slargest);
smallest_and_second_smallest(int
list[],int &smallest,int &ssmallest);
main()