हिंदी

Write a Program to Sort Given Array in Ascending Order. - Structured Programming Approach

Advertisements
Advertisements

प्रश्न

Write a program to sort given array in ascending order. 

उत्तर

Program :-

Source code :

//Program to sort given array in ascending order
#include <stdio.h>
#include <conio.h>
void main()
{
       int i, j, a, n, array[50];
       printf("How many numbers in an array…? \n");
       scanf("%d", &n);
       printf("Enter the numbers. \n");
       for (i = 0; i < n; i++)
             scanf("%d", &array[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( );
}

Output : 

How many numbers in an array…?
5
Enter the numbers.
3
1
456
200
150
The numbers arranged in ascending order are given below
1
3
150
200
456
shaalaa.com
Array
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (December) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×