gpt4 book ai didi

c - 下面函数中的表达式是如何计算的?

转载 作者:行者123 更新时间:2023-11-30 20:05:53 25 4
gpt4 key购买 nike

//function to copy string t to string s using pointers
void strcpy(char *s,char *t)
{
while((*s++=*t++)!='\0');
return;
}

我很困惑表达式 *s++==*t++ 是如何计算的。我知道增量运算符的结合性高于赋值运算符。

最佳答案

*s++=*t++ 基本上是

*s = *t;
s++;
t++;

关于c - 下面函数中的表达式是如何计算的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28792286/

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