gpt4 book ai didi

c - 格式化字符串上的 fprintf

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

我正在尝试显示以下内容

static const char MSG[] = "Test %ld\n";
static int COUNT = 5;

fprintf(stdout, "%s", MSG, COUNT);

但目前,输出显示

Test %ld

如何格式化 %ld 以显示 5?

最佳答案

试试这个:

#include <stdio.h>

int main ( void )
{
static const char MSG[] = "Test %ld\n";
static int COUNT = 5;

fprintf(stdout, MSG, COUNT);

return ( 0 );
}

关于c - 格式化字符串上的 fprintf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28021720/

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