DATA STRUCTURE
Programming and Technical
Programming
Technical
Write programs for Bubble Sort, Quick sort
Read Solution (Total 3)
-
- #include
#include
#define MAX 100
main()
{
int i,j,arr[MAX],temp,count,n;
// clrscr();
printf("Enter the no of elements:
");
scanf("%d",&n);
printf("Enter the array elements:
");
for(i=0;i - 9 years agoHelpfull: Yes(2) No(0)
- #include
#define MAX 100
main()
{
int i,j,n,arr[MAX],temp,count;
printf("Enter the number of elemnets:");
scan("%d",&n);
printf("ENter the elements of array:");
for(i=0;i - 9 years agoHelpfull: Yes(0) No(0)
- bubble sort program:
#include
int main()
{
int i,j,n,a[100],temp;
printf("enter how many no: n");
scanf("%d",&n);
printf("enter array of no: n");
for(j=0;j - 7 years agoHelpfull: Yes(0) No(0)
DATA STRUCTURE Other Question