Ask your own question, for FREE!
Computer Science 22 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
euphoriiic: I drew more people !! ud83eudd17.
2 hours ago 40 Replies 3 Medals
euphoriiic: I drew markk ud83eudd17.
3 hours ago 34 Replies 2 Medals
LOLIAteYourMom: u2212243 = u22129(10 + x)
6 hours ago 0 Replies 0 Medals
Bubblezz: Art for @jeromeccv
6 hours ago 13 Replies 3 Medals
Bubblezz: Art for @jeromecv
10 hours ago 0 Replies 0 Medals
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!