标签: c pointers
在我的演讲幻灯片的page 15中,有一个示例。
int x = 10; increment_int(x); // can’t change the value of x increment2_int(&x); // can change the value of x
我不明白为什么第一个函数increment_int(x)不能更改x的值。尽管我不知道这些函数到底能做什么,但我猜想它们正在增加参数的数量。
increment_int(x)
答案 0 :(得分:2)