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