CONST keyword does not make the variable constant! HOW?
In this post, we will discuss a workaround that allows us to change the value of a constant variable. The trick is to assign the address of the constant variable to a pointer and then modify its value by dereferencing the pointer. In the below code, ...


