write a program of bubble sort using pointer?

Answers were Sorted based on User's Feedback



write a program of bubble sort using pointer?..

Answer / anuj pratap singh

#include<stdio.h>
#include<conio.h>
void sort(int *,int );//prototype
void main()
{
int a[5],size=5; //let suppose
int i;
clrscr();
printf("Enter the elements according to size:");
for(i=0;i<size;i++)
{
scanf("%d",&a[i]);
}
sort(a,size); //calling function
printf(\n\npress any key to exit);
getch();
}
void sort(int *p,int size) //called function
{
int i,j,temp;
for(i=0;i<size-1;i++)
{
for(j=0;j<size-i-1;j++)
{
if(*(p+J)>*(p+j+1))
{
temp=*(p+J);
*(p+J)=*(p+J+1);
*(p+J+1)=temp;
}
}
}

for(i=0;i<size;i++)
{ pritf("%d",*(p+i));
}
}

Is This Answer Correct ?    40 Yes 14 No

write a program of bubble sort using pointer?..

Answer / gulam md gouss khan

#include<stdio.h>
#include<conio.h>
void sort(int *,int );//prototype
void main()
{
int a[5],size=5; //let suppose
int i;
clrscr();
printf("Enter the elements according to size:");
for(i=0;i<size;i++)
{
scanf("%d",&a[i]);
}
sort(a,size); //calling function
printf(\n\n press any key to exit);
getch();
}
void sort(int *p,int size) //called function
{
int i,j,temp;
for(i=0;i<size-1;i++)
{
for(j=0;j<size-i-1;j++)
{
if(*(p+J)>*(p+j+1))
{
temp=*(p+J);
*(p+J)=*(p+J+1);
*(p+J+1)=temp;
}
}
}

for(i=0;i<size;i++)
{ pritf("%d",*(p+i));
}

Is This Answer Correct ?    19 Yes 12 No

write a program of bubble sort using pointer?..

Answer / nitish-csedu

#include<stdio.h>
int main()
{
int n,i,j,temp,a[1000],*p;
scanf("%d",&n);
p=&a[0];
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<n-1;i++)
{
for(j=i+1;j<n;j++)
{
if(*(p+i)>(*(p+j)))
{
temp=*(p+i);
*(p+i)=*(p+j);
*(p+j)=temp;
}
}
}
for(i=0;i<n;i++)
{
printf("%d ",*(p+i));
}
return 0;
}

Is This Answer Correct ?    10 Yes 8 No

Post New Answer

More C Interview Questions

difference between the array and linked list general difference related to memory

2 Answers  


c pgm count no of lines , blanks, tabs in a para(File concept)

2 Answers  


Find occurence of a character in a sting.

3 Answers   TCS,


What is the significance of c program algorithms?

0 Answers  


What is %d called in c?

0 Answers  






difference between string and array?

6 Answers  


what is the use of call back function in c?tell me with example

2 Answers   Bosch,


What is the total generic pointer type?

0 Answers  


What is the use of parallelize in spark?

0 Answers  


Will Macros support multiple arguments ?

7 Answers   Oracle,


how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48

1 Answers  


Why ca not I do something like this?

0 Answers  


Categories