write a program to fined second smallest and largest element
in a given series of elements (without sorting)
Answer Posted / sachin tyagi
void main()
{
int a[12],max,min1.min2,max2,i,temp;
printf("enter valu");
for(i=0;i<11;i++)
scanf(%d,&a[i]);
max=a[0];
min1=a[0];
for(i=1;i<11;i++)
{
if(max<a[i])
max=a[i];
if(min1>a[i];
min1=a[i]
}
for(i=1;i<11;i++0
{
if((max2>a[i])&&(max2!=max){
max2=a[i];
}
if((min2<a[i])&&(min2!=min1))
{
min2=a[i];}
print("small is %d and large is %d", min2,max2);
}
| Is This Answer Correct ? | 15 Yes | 13 No |
Post New Answer View All Answers
Can you write the function prototype, definition and mention the other requirements.
How can I call a function with an argument list built up at run time?
Which built-in library function can be used to match a patter from the string?
What is atoi and atof in c?
how to capitalise first letter of each word in a given string?
How main function is called in c?
Are there constructors in c?
What is extern storage class in c?
Are pointers integers in c?
Is c++ based on c?
What is the size of enum in bytes?
i have a written test for microland please give me test pattern
Is multithreading possible in c?
Explain null pointer.
What do you understand by normalization of pointers?