gpt4 book ai didi

C函数不返回字符串

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

为什么这段代码没有返回预期的连接字符串,而是返回 2?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

const char * meh() {
char meh1[32] = "This ";
char meh2[32] = "should work :)";
return strcat(meh1, meh2);
}

int main() {
printf(meh());
return 0;
}

最佳答案

因为一旦离开函数 meh,meh1 就会超出范围,它在堆栈上占据的区域将用于 printf 内部的其他内容。

关于C函数不返回字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27462944/

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