From 0038b2b88f5ecaef825d2b2b204108c4dceecf38 Mon Sep 17 00:00:00 2001 From: agarwalabhi19 Date: Sat, 23 Oct 2021 16:53:48 +0530 Subject: [PATCH] first --- c++/bubble_sort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/bubble_sort.cpp b/c++/bubble_sort.cpp index 7c2530f..0f0a5ce 100644 --- a/c++/bubble_sort.cpp +++ b/c++/bubble_sort.cpp @@ -9,7 +9,7 @@ int main() int n = sizeof(a) / sizeof(a[0]); bubbleSort(a, n); cout << "Sorted Array in Ascending Order:\n"; - for (int i = 0; i < n; ++i) + for (int i = 0; i < n; i++) { cout << " " << a[i]; }