Damiano PeJan 26, 2022Understanding Strict-Aliasing RulesThe strict-aliasing rules allow the compiler to assume that your code does not alias between incompatible types. In this way, the compiler
Damiano PeNov 2, 2021The Difference Between const int * And int *constAn 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...