diff --git a/src/sort.c b/src/sort.c index 5e98ec5..528bf8c 100644 --- a/src/sort.c +++ b/src/sort.c @@ -192,6 +192,7 @@ int main (int argc, char **argv) { } else if (algoritmo == 2) { fprintf(stdout, "Bubble sort corriendo...\n"); + fflush(stdout); start_timer(); bubble_sort(array, n); stop_timer();