From 7079c1956b5f8dfad2afe45e43afb57df8e7c3c7 Mon Sep 17 00:00:00 2001 From: Sarath Kumar S <54178445+Sarath-Kumar-S@users.noreply.github.com> Date: Tue, 1 Oct 2019 09:28:11 +0530 Subject: [PATCH] Update bubble_sort.c --- data_structure_lab/bubble_sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structure_lab/bubble_sort.c b/data_structure_lab/bubble_sort.c index 01087b4..8501085 100644 --- a/data_structure_lab/bubble_sort.c +++ b/data_structure_lab/bubble_sort.c @@ -28,7 +28,7 @@ int main() printf("Sorted list in ascending order:\n"); for (c = 0; c < n; c++) - printf("%d\n", array[c]); + printf("%d\n", array[c]); // this prints the sorted array in ascending order return 0; }