Posts tagged C++
Advent of Code 2024 [Days 10 and 11]
- 21 February 2025
The plutonian pebbles are getting out of hand! And we also have to find a hiking trail.
Learning CPP via Advent of Code 2024 [Day 9]
- 15 February 2025
This isn’t how you’re supposed to defrag a disk… right?
Advent of Code 2024 [Days 6 to 8]
- 18 January 2025
This is my progress log for Advent of Code 2024, where I’m tackling the challenges using C++ to get good at the language. Contains work of Day 6 to Day 8.
Learning CPP via Advent of Code 2024 [Days 1 to 5]
- 04 January 2025
This is my progress log for Advent of Code 2024, where I’m tackling the challenges using C++ to get good at the language.
Writing C wrapper for C++ libraries
- 12 June 2024
When working on projects that involve both C and C++ components, integrating functionality between the two can sometimes pose challenges due to the differences in their language constructs and compilation models. One common scenario is when you have a C++ library that you want to use within a C codebase.