mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-24 14:29:42 +03:00
Update sorting/selection_sort_recursive.c
This commit is contained in:
parent
60a07e6346
commit
50cb5835a1
@ -75,7 +75,7 @@ void selectionSort(int *arr, const int size)
|
|||||||
/**
|
/**
|
||||||
* Test function
|
* Test function
|
||||||
*/
|
*/
|
||||||
void test()
|
static void test()
|
||||||
{
|
{
|
||||||
const int size = 10;
|
const int size = 10;
|
||||||
int *arr = (int *)calloc(size, sizeof(int));
|
int *arr = (int *)calloc(size, sizeof(int));
|
||||||
|
Loading…
Reference in New Issue
Block a user