top of page
Blog

Understanding Strict-Aliasing Rules
The strict-aliasing rules allow the compiler to assume that your code does not alias between incompatible types. In this way, the compiler
Damiano Pe
Jan 26, 2022
234 views

C-Christmas tree
In this article we will create a sparkling Christmas tree in C using ANSI escape sequences and a smart use of pointers
mattiaducci
Dec 21, 2021
415 views

The Difference Between const int * And int *const
An easy way to remember whether it is the pointed value or the address stored in the pointer variable to be constant is to read the...
Damiano Pe
Nov 2, 2021
100 views
bottom of page