From fa75dc144dd52c906543f1fe5e40e49b5e8d343c Mon Sep 17 00:00:00 2001 From: Carlos <110995013+crr004@users.noreply.github.com> Date: Mon, 30 Jan 2023 17:38:56 +0100 Subject: [PATCH] Added #include to support the use of INT_MAX (#251) --- 02_selection_sort/c/01_selection_sort.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 +}