C/C++ 传入地址与C++引用符&

#include
void test(int *p);
void test2(int &p);
int main()
{
    int x=12;
    test(&x);
    printf("%d\n",x);
    test2(x);
    printf("%d\n",x);
    return 0;
}
void test(int *p)
{
    *p=12;
    return ;
}
void test2(int &p)//C++ 语法
{
    p=66;
    return ;
}
 

你可能感兴趣的:(1024程序员节)