gpt4 book ai didi

c++ - 对字符数组感到困惑

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

<分区>

我试图更多地理解字符数组使用以下代码

int main() {
char test[] = "hello";
char here[4] = "ola";
char bon[] = { 'w','o','r','d' };
char word[4] = { 'z','f','f','z' };

std::cout << test << std::endl;
std::cout << here << std::endl;
std::cout << bon << std::endl;
std::cout << word << std::endl;
return 0;
}

输出是

hello
ola
wordhello
zffzwordhello

为什么它没有给我这个输出

hello
ola
word
zffz

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