Let me give an example to understand my question :
void fct1()
{
int T[20];
int* p=T;//the goal is to modify this pointer (p)
fct2(&p);
}
void fct2(int** p)
{
(*p)++;//this will increment the value of the original p in the fct1
}
What i want is to avoid pointers and do it only with references , it's possible ?