0% found this document useful (0 votes)
3 views

c Programs3

The document describes a C program that sorts an array of integers in ascending order based on user input. It prompts the user to enter the number of elements and the elements themselves, then uses a nested loop to sort the numbers. Additionally, it mentions a similar program for sorting in descending order, indicating that both programs should be documented in a theory note and brought to the lab.

Uploaded by

Sulochana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

c Programs3

The document describes a C program that sorts an array of integers in ascending order based on user input. It prompts the user to enter the number of elements and the elements themselves, then uses a nested loop to sort the numbers. Additionally, it mentions a similar program for sorting in descending order, indicating that both programs should be documented in a theory note and brought to the lab.

Uploaded by

Sulochana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Ascending order of data

#include <stdio.h>
void main()
{

int i, j, a, n, number[30];
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 ascending order are given below \n");
for (i = 0; i < n; ++i)
printf("%d\n", number[i]);
getch();
}

Input
Enter the value of N
6
Enter the numbers
3
78
90
456
780
200
Output:
The numbers arranged in ascending order are given below
3
78
90
200
456
780

Descending order of data

if (number[i] < number[j])


other’s are same as in previous program.
So write 2 programs in theory note and come to lab.

You might also like