puntero a constante
//the data(value) pointed by the pointer is constant
const int *some_ptr {&number_1};
//the adress pointed by the pointer is constant
int *const some_ptr {&number1} ;
Mero