由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - Unix上C++函数求救
相关主题
HELP: How to change data to string in unix c?how to print 2 exponential digits in windows by using Perl
PERL入门求助问一道C++编程题
Solaris C问题求教:readlink返回空1小时前的G家onsite面经
补 ms onsite 面筋Mysterious PgSQL 8.3 crash
A simple interview questionC++里面把数转成字符串的命令是啥啊?
请问这是什么干的啊?two general C++ question
[合集] 如何只用putchar来实现itoa?C++: use char * in Map
相关话题的讨论汇总
话题: intstring话题: unix话题: 函数话题: sprintf话题: c++
进入Unix版参与讨论
1 (共1页)
F***Q
发帖数: 6599
1
在Unix上那个函数功能跟dos的itoa()类似,把一个数变成串?
我用fcvt/ecvt,cc总是报错:
"ptest.cpp", line 77.15: 1540-276: (S) Assignment to a
constant expression is not allowed.
请问应该怎么用?
多谢!
I**********s
发帖数: 441
2
If you check C reference book you can find many ways to do
this, I think.
One way currently I'm using is sprintf function:
char intString[20];
int n = 10;
sprintf(intString, "%d", n);
then you can use intString other places.
1 (共1页)
进入Unix版参与讨论
相关主题
HELP: How to change data to string in unix c?how to print 2 exponential digits in windows by using Perl
PERL入门求助问一道C++编程题
Solaris C问题求教:readlink返回空1小时前的G家onsite面经
补 ms onsite 面筋Mysterious PgSQL 8.3 crash
A simple interview questionC++里面把数转成字符串的命令是啥啊?
请问这是什么干的啊?two general C++ question
[合集] 如何只用putchar来实现itoa?C++: use char * in Map
相关话题的讨论汇总
话题: intstring话题: unix话题: 函数话题: sprintf话题: c++