TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Array In Descending Order
Shobana J
Jul 13, 2016
3.7
k
0
2
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog, you will learn about an array in descending order.
aidorr.zip
I
ntroduction
It is often necessary to arrange the elements in an array in the numerical order i.e. from the highest value to the lowest value
Software Requirements
Turbo C++ OR C.
Programming
** ** ** ** ** ** ** ** ** ** * Array in descending order ** ** ** ** ** ** *
#include < stdio.h > void main()
{
int
number[30];
int
i, j, a, n;
printf(
"Enter the value of N\n"
);
scanf(
"%d"
, & n);
printf(
"Enter the numbers \n"
);
for
(i = 0; i < n; ++i) scanf(
"%d"
, & number[i]);
for
(i = 0; i < n; ++i) {
for
(j = i + 1; j < n; ++j)
{
if
(number[i] < number[j])
{
a = number[i];
number[i] = number[j];
number[j] = a;
}
}
}
printf(
"The numbers arranged in descending order are given below\n"
);
for
(i = 0; i < n; ++i)
{
printf(
"%d\n"
, number[i]);
}
}
Explanation
In the programming, given above, I have clearly explained how to arrange the numbers in a descending order.
Output
Conclusion
Thus, the array in the descending order is printed and executed successfully.
Array in descending order
Next Recommended Reading
Print Alternate Elements In An Array