Array Program #2

5. Read n numbers in an array and print them in ascending order.

#include <stdio.h>
void main()
{
    int i, j, a, n, number[100];
     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]);
    }
}

Output

  • Enter the value of N
    6
    Enter the numbers
    15
    8
    45
    0
    -3
    9
    The numbers arranged in ascending order are given below
    -3
    0
    8
    9
    15
    45 

For download this program please check the link ➡➡ Download



Comments

Popular

Basic Program #3

Pointer Program #1

Array Program #4

Singly Linked List program #1

Basic program #2