c_koans
c_koans copied to clipboard
C Koans
In the file about_arrays.c on line 81 the array int is allocated with 5 elements (defined on line 80), then in line 96 this array is reallocated again with 5...
Hi, final PR with last changes/fixes I found in the koans. Thank you for C Koans.
GCC 12.2.0 will complain about `use-after-free` and refuse to compile `about_arrays.c`. Error log before fix ```txt rm -f -r build bin gcc -std=gnu11 -Wall -Werror -Wno-unused-function -Wno-nonnull -I include src/about_arrays.c...