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

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