From 802553e8b742037d85ef9e0cfa6cf0a3ce545ddc Mon Sep 17 00:00:00 2001 From: HarshMarolia <53485461+HarshMarolia@users.noreply.github.com> Date: Tue, 1 Oct 2019 19:28:53 +0530 Subject: [PATCH] Update BubbleSort.c Added comments --- BubbleSort.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BubbleSort.c b/BubbleSort.c index 7627bbe..af14a06 100644 --- a/BubbleSort.c +++ b/BubbleSort.c @@ -11,10 +11,10 @@ void printArray(int *arr, int n) printf(" }"); } -void bubbleSort(int *arr, int n) +void bubbleSort(int *arr, int n)// function { int i, j, temp; - for(i=0; i