ALLInterview.com :: Home Page            
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
   
 
Categories  >>  Software  >>  Operating Systems  >>  Data Structures
 
 
 
Question
Write programs for Bubble Sort, Quick sort
 Question Asked At :: Cognizent, Heap Sort
 Question Submitted By :: guest
I also faced this Question!!     Rank Answer Posted By  
 
Answer
//PROGRAM FOR BUBBLE SORT

#include<stdio.h>
#include<conio.h>
#define   SIZE  5
void main()
{
     int a[SIZE],n,i,j,temp;
     clrscr();
     printf("enter the elements ");
     for(i=0;i<SIZE;i++) 
     scanf("%d",&a[i]);
     printf("the sorted list is :->\n");
     for(i=0;i<SIZE;i++)
     for(j=i;j<SIZE-i;j++)
     if(a[j]>a[j+1])
     {
           temp=a[j];
           a[j]=a[j+1];
           a[j+1]=temp;
     }
  
     for(i=0;i<SIZE;i++)
      printf("%d",a[i]);
      getch();
}

 
Nitin Jatpuriya
 
View All Answers
 
 
 
 
 


   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2012  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com