gpt4 book ai didi

c - 如何在 strdup 中使用格式说明符?

转载 作者:行者123 更新时间:2023-11-30 21:14:50 25 4
gpt4 key购买 nike

如何在 strdup 中使用格式说明符?我正在尝试做这样的事情。

char arr[10] = "acbde";
char* s = strdup("Hello..I am %s", arr);

但这不起作用。

最佳答案

您不能使用函数 strdup 来实现此目的。相反,您应该使用 snprintf。这是一个关于如何执行此操作的基本示例。

char *arr = "acbde";
char str[100]; // set this to your maximum length

snprintf(str, sizeof(str), "Hello..I am %s", arr);

这是一个关于如何使用它的更完整的示例。

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

int main(void) {
char *arr = "acbde";
char *str;

int length = snprintf(NULL, 0, "Hello..I am %s", arr);
assert(length >= 0); // TODO add proper error handling
str = malloc(sizeof(char) * (length + 1));
snprintf(str, length+1, "Hello..I am %s", arr);

printf("%s [%d]\n", str, length);
free(str);
}

关于c - 如何在 strdup 中使用格式说明符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33306414/

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