gpt4 book ai didi

string - sprintf(将 int 转换为 char[])

转载 作者:行者123 更新时间:2023-12-02 05:15:17 25 4
gpt4 key购买 nike

在我的程序中,我尝试将 int 转换为 char[20];

我尝试通过以下方式做到这一点:

  char str[20];    
sprintf(str, "%d", timer);

其中定时器是int。

但是当我构建这段代码时,我收到以下警告。

Type implicit declaration of function 'sprintf' [-Wimplicit-function-declaration]   
incompatible implicit declaration of built-in function 'sprintf' [enabled by default]

这是什么意思?

注意:(我已经包含了 string.h 和 stdlib.h)。


太好了,我将 stdio.h 添加到我的代码中,现在警告消失了,只是给我带来了一个更严重的错误。

对“_sbrk”的 undefined reference

最佳答案

你必须#include <stdio.h>使用 sprintf()

关于string - sprintf(将 int 转换为 char[]),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14753423/

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