Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (tacotime):

C: Help with bubble sort. So I've made my array and when I print it it looks fine, but after I run my bubble sort algorithm and try to print it nothing is displayed. Code is as follows:

OpenStudy (tacotime):

#include <stdio.h> int main (void){ int arrayLength = 5; int array[5] = {4,2,44,1,211}; int i; int n = 0; int goal; int swap; //start while (arrayLength != 0){ goal = array[n]; while (n <= arrayLength -1){ if (goal < array[n]){ swap = array[n]; array[n] = goal; goal = swap; } n++; } arrayLength--; } //print for (i = 0; i < arrayLength; i++ ) { printf("%d", array[i]); } }

OpenStudy (rsmith6559):

Shouldn't n be zeroed for each iteration of the outer while loop? Commenting this code will help you double check the logic of the code.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
RAVEN69: My drawing so far is actually fire
1 week ago 9 Replies 2 Medals
PureSoulless: is staying at your friend's house while you're homeless legal.
2 weeks ago 5 Replies 1 Medal
whyjustwhy: i did that one TV girl trend with blake (aka @ShadowKid3)
1 week ago 12 Replies 2 Medals
whyjustwhy: i did that one TV girl trend with blake (aka @shadowkid3)
2 weeks ago 3 Replies 0 Medals
whyjustwhy: yo guys he can watch me sleep now (ignore dora)
3 weeks ago 24 Replies 1 Medal
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!