gpt4 book ai didi

c - 如何更改指向的值并同时增加指针

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

char foo[] = "something";
char *p = foo;

有没有办法只使用一个 ; 来更改指向的值并将指针递增到下一个元素 ;?

我的意思是,在一条语句中实现下面这两行的效果?

 *p = 'S';
p++;

最佳答案

我觉得你想要

*p++ = 'S'; // as good as -->   *(p++) = 'S';

Sample run .

关于c - 如何更改指向的值并同时增加指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24444780/

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