diff --git a/SelectionSort.cpp b/SelectionSort.cpp index f8411cc..507b0ee 100644 --- a/SelectionSort.cpp +++ b/SelectionSort.cpp @@ -31,9 +31,9 @@ int main() { for(int i = 0; i> arr[i]; } - cout << "Array Elements before Sorting: "; + cout << "Array Elements before Sorting \n: "; display(arr, n); selectionSort(arr, n); - cout << "Array Elements after Sorting: "; + cout << "Array Elements after Sorting \n: "; display(arr, n); -} \ No newline at end of file +}