gpt4 book ai didi

c - C 是否像 Python 一样有可变和不可变变量值的概念?

转载 作者:行者123 更新时间:2023-11-30 15:00:29 26 4
gpt4 key购买 nike

#include<stdio.h>
int main(void)
{
int x,y;
x=10;
y=x;
x=5;
printf("x=%d,y=%d\n",x,y);
return 0;
}

输出:x=5,y=10

那么我们可以说 y 是不可变的吗?

最佳答案

除了const之外,所有变量值在C中都是可变的。

So can we say that y is immutable?

简短的回答:

关于c - C 是否像 Python 一样有可变和不可变变量值的概念?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42082772/

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