Bubble Sort Code in C programing language by Code With Rudy with user input with using function:
Code With Rudy
//please use include and stdio.h before the code
void main(){
int array[100], n, c, d, swap;
printf("Enter number of elements:");
scanf("%d", &n);
printf("Enter the elements integers:");
for (c = 0; c < n; c++)
scanf("%d", &array[c]);
for (c = 0 ; c < n - 1; c++){
for (d = 0 ; d < n - c - 1; d++){
if (array[d] > array[d+1]) /* For decreasing order use '<' instead of '>' */
{
swap = array[d];
array[d] = array[d+1];
array[d+1] = swap;
}
}
}
printf("Sorted list:");
for (c = 0; c < n; c++)
printf("%d " ,array[c]);
}
//codewithrudy

0 Comments