/* LARGEST SMALLEST - Program to find the largest , second largest and smallest element in an array of integers */ #include #include void sort(int x[ ], int n); void main() { int i, n, x[50] ; clrscr() ; printf("Enter the number of elements: ") ; scanf("%d", &n) ; printf("Enter the elements: \n") ; for(i=0 ; i