Added #include <limits.h> to support the use of INT_MAX (#251)

This commit is contained in:
Carlos
2023-01-30 17:38:56 +01:00
committed by GitHub
parent 73e5711b73
commit fa75dc144d

View File

@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#define SIZE 5
// Finds the smallest value in an array
@@ -37,4 +38,4 @@ int main(void) {
printf("%d ", sortarr[i]);
}
return 0;
}
}