讓我舉一個例子就明白了我的問題:指針在主函數中的修改而不指針
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
}
我要的是避免指針和只引用做到這一點,這是可能的?
您*嘗試*使用參考?什麼地方出了錯? (另外,請不要在[C]中標記有關引用的問題。在C中沒有引用) –
我正在使用visual C++,並且想使用引用,但我不知道如何? –