gpt4 book ai didi

c - 从传递的参数中检索值

转载 作者:太空宇宙 更新时间:2023-11-04 07:32:52 24 4
gpt4 key购买 nike

我一定有什么误解,为什么不返回 10?

int main() {

float i = 0;
func(i);
printf("%f", i);

return 0;
}


void func(float i) {

int j;
for (j = 0; j < 5; j++) {

i += 2;
}
}

最佳答案

原始类型(如 float )是“按值传递”的,func() 实际上是在修改 i 的副本。

关于c - 从传递的参数中检索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11928870/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com