WAP to accept 4nos from keyboard and display them in descending order
Answers
/*
* C program to accept a set of numbers and arrange them
* in a 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]);
/* sorting begins ... */
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]);
}
}
Answer:
Biology. 1.1 Evolution. 1.2 Evolution: The Theory of Evolution. 1.3 Biology: The Science of Life. 1.4 Classification of Animal Kingdom. 1.5 Structure of Plant and Animal Cell. ...
Chemistry. 2.1 Matter and its states. 2.2 Formation of Substances. 2.3 Atom. 2.4 Atomic Structure. ...
Physics.