diff --git a/02_selection_sort/c/01_selection_sort.c b/02_selection_sort/c/01_selection_sort.c index c0a511e..169e3e5 100644 --- a/02_selection_sort/c/01_selection_sort.c +++ b/02_selection_sort/c/01_selection_sort.c @@ -1,5 +1,6 @@ #include #include +#include #define SIZE 5 // Finds the smallest value in an array @@ -37,4 +38,4 @@ int main(void) { printf("%d ", sortarr[i]); } return 0; -} \ No newline at end of file +}