Write a program in C to find the second biggest of N numbers using array ?
program no : 28
purpose : second biggest of N numbers using Array
#include<"stdio.h">
#include<"conio.h">
void main()
{
int arr[10], n, *p;
int i, big=-32768,sbig=-32767;
p=arr;
printf("enter n value..\n");
scanf("%d", &n);
for(i=0;i