Solved Advent of Code 2015 Day 3 in C. Not too difficult, though I did have to write my own implementation of dynamic arrays, inspired by Go slices (covered in a separate article).
Thought process:
https://www.cdeveloper.co.uk/advent-of-code/2015/03.html
Wrapper code:
https://codeberg.org/pwaring/advent-of-code-c/src/branch/main/2015/03/03.c
Functions:
https://codeberg.org/pwaring/advent-of-code-c/src/branch/main/2015/03/03_functions.c
Tests:
https://codeberg.org/pwaring/advent-of-code-c/src/branch/main/2015/03/03_tests.c

