is there any performance benefit of using constant pointer to constant variable like the following?
void doSome(const int * const param)
{
//do something ;
}
i know that making param constant is good for performance, how about making both constant?