在 C++ 中将整数存储到 char* 中
我正在编写一些返回整数的代码,然后需要使用 ncurses 库中的 printw 输出该整数。但是,由于 printw 只接受 char*,我不知道如何输出它。
本质上,有没有办法将整数存储到 char 数组中,或者使用 printw 输出整数?
I'm writing some code that returns an integer, which then needs to be outputted using printw from the ncurses library. However, since printw only takes char*, I can't figure out how to output it.
Essentially, is there a way to store a integer into a char array, or output an integer using printw?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
printw()
接受const char *
作为格式说明符。你想要的是printw()
acceptsconst char *
as a format specifier. What you want isitoa 函数将 int 转换为 char*。
The itoa function converts an int to char*.
使用 itoa() 或 sprintf() 将整数转换为 ascii 字符串。
示例:
现在你可以将 s 作为 char* 传递
Use itoa() or sprintf() to convert integer to ascii string.
Example:
now u can pass s as char*
itoa 将为您提供帮助。
itoa will help you.