Welcome 🖖 to my blog!
/************************************************************************
* *
* Hi there! *
* Here you will find coding projects, snippets, insights, cheatsheets, *
* howtos, eventually a link-list and much more (atm not yet). *
* *
* _mofrim_ *
************************************************************************/
snippet of the day
// a constant array to functions type `int *func(int)`
int *(*const funcArr0[])(int) = {func1, func2, func3};
… without words!
lesson of the day
The length of a function is inversely proportional to its complexity and indentation level of that function!
(source: idk?)
selected posts
- 2025-08-25: Write-up about philosophers problem