Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

find second largest element in array w/o using sorting
techniques? use onle one for loop.

Answer Posted / guest


max = 2ndmax= array[0];
for (i=0;i,length;i++)
{
if (array[i]>max)
{
2ndmax=max;
max=array[i];
}
}
return 2nd max

Is This Answer Correct ?    40 Yes 74 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c pass by value or reference?

1031


Can we change the value of static variable in c?

1020


What is bss in c?

1091


What is the use of a static variable in c?

1055


What is the purpose of 'register' keyword in c language?

1018


Where in memory are my variables stored?

1174


What is a pointer on a pointer in c programming language?

1136


Write a program to check palindrome number in c programming?

1010


What is the purpose of type declarations?

1112


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1140


Using which language Test cases are added in .ptu file of RTRT unit testing???

4271


what is different between auto and local static? why should we use local static?

1122


What is null pointer constant?

1148


number of times a digit is present in a number

2035


Can math operations be performed on a void pointer?

1041