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...

write a program to sort the elements in a given array in c
language

Answer Posted / rajesh evani

#include<stdio.h>
void main()
{
int a[5],t;
int i,j=0;
printf("enter 5 values into the array a");
for(i=0;i<5;i++)
{
scanf("%d",&a[i]);
}
printf("the sorted order of elements");
for(i=0;i<5;i++)
{
for (j=0;j<5;j++)
{
if(a[i]>a[j])
{
t=a[i];
a[i]=a[j];
a[j]=t;
}
}
}
for(i=0;i<5;i++)
{
printf("%d",a[i]);
}
}

Is This Answer Correct ?    225 Yes 62 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Who is the main contributor in designing the c language after dennis ritchie?

953


How macro execution is faster than function ?

1132


Explain how do you use a pointer to a function?

1054


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1882


Differentiate between static and dynamic modeling.

1051


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1212


What does the message "automatic aggregate intialization is an ansi feature" mean?

1143


What is a ternary operator in c?

1058


Write a program to identify if a given binary tree is balanced or not.

1091


Do pointers store the address of value or the actual value of a variable?

1020


What is the difference between fread and fwrite function?

1033


What is meant by type casting?

1020


What happens if header file is included twice?

1090


What is a shell structure examples?

1029


Write a program to print "hello world" without using a semicolon?

1004