if someIntdefined as
int *someInt;
then
(const int)* someInt;
. In addition, you will encounter an error.
You interfered with the pointer to intand passed the resulting value const int. And yes, this statement without purpose is lost.
int rtn = (const int)* someInt;
source
share