73. C Program To Suppress the Negative Elements from the Given Array Elements.
How does this program work?
- This Program is used to suppress all the negative elements in array.
Here is the code
#include <stdio.h>
int main(void)
{
//Program to suppress the negative elements into the down positions of an array
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 rearranged array is given below: \n");
for (i = 0; i < n; ++i)
{
printf("%d\n", number[i]);
}
return 0;
}