#include using namespace std; int main() { const int N = 22; int * pN = const_cast(&N); *pN = 33; co
const_cast in your code, just hands over a pointer 'Pn' to 'N' through which 'N' can be modified. The address of 'N' remains the same as the handed over pointer 'Pn'