output newline after bubblesort output

This commit is contained in:
Roland W-H 2022-05-18 17:24:19 +01:00
parent e6266f6137
commit 470d60f300
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ int main(int argc, char** argv)
printf("%d", arr[i]);
if (i < n - 1) printf(", ");
}
putchar('\n');
}
free(arr);