gpt4 book ai didi

c - 在 C 中通过引用传递

转载 作者:太空狗 更新时间:2023-10-29 16:13:54 24 4
gpt4 key购买 nike

如果 C 不支持通过引用传递变量,为什么它可以工作?

#include <stdio.h>

void f(int *j) {
(*j)++;
}

int main() {
int i = 20;
int *p = &i;
f(p);
printf("i = %d\n", i);

return 0;
}

输出:

$ gcc -std=c99 test.c
$ a.exe
i = 21

最佳答案

因为您将指针的传递给该方法,然后取消引用它以获取指向的整数。

关于c - 在 C 中通过引用传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2229498/

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