gpt4 book ai didi

c - 调用strcat()时如何使用malloc?

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

我正在编写一个小程序来从文件中复制文本信息,编辑并将其保存到另一个文件中。当我尝试执行指令时

a=fputs( strcat( "\"", strcat(string, "\",\n")), novo_arquivo);

它给了我段错误核心转储错误。研究了一下,发现必须要用malloc来分配内存,但是不知道这段代码应该怎么写。

最佳答案

strcat() 与动态内存一起使用的粗略示例可能如下所示:

#include <stdio.h>  // for printf
#include <string.h> // for strcat
#include <stdlib.h> // for calloc

int main()
{
char* novo_arquivo = "example_string";
// size + 3 to account for two quotes and a null terminator
char* concat_string = calloc(strlen(novo_arquivo) + 3, sizeof(*concat_string));
strcat(concat_string, "\"");
strcat(concat_string, novo_arquivo);
strcat(concat_string, "\"");
// write concat_string to a file...
printf("%s", concat_string);
free(concat_string);
}

您是在堆上而不是堆栈上声明 concat_string,因此您需要在使用完后释放它,否则会造成内存泄漏。

关于c - 调用strcat()时如何使用malloc?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58088575/

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