Translate

Wednesday, May 20, 2015

C Programming Buble Sorting

#include<stdio.h>
#include<conio.h>

int main( )
{
     int a[100];
     int i, j, temp, n ;
     printf("How many numbers you want to sort : \n");
     scanf("%d",&n);
     printf("Enter %d numbers\n", n);
     for(j=0; j<n; j++)
     scanf("%d",&a[j]);

     for(j=0;j<n-1;j++)
     {
          for(i=0; i<n; i++)
          {
               if(a[i]>a[i+1])
               {
                     temp=a[i];
                     a[i]=a[i+1];
                     a[i+1]=temp;
               }
          }
     }

     printf ( "\n\nSorted:\n") ;

     for ( i = 0 ; i <n ; i++ )
     printf ( "%d\t", a[i] ) ;
     getch();
 }

0 comments:

Post a Comment