C标准库之类型转换函数_fcvt
本帖最后由 墨血 于 2014-9-14 12:51 编辑功能:
_fcvt 函数将浮点数转换成字符串。
函数原型:
char* _fcvt( double value, int count, int* dec, int* sign );
参数:
参数说明
value要转换类型的浮点数
count要保留的小数点后的长度
dec小数点位置
sign符号
返回值:
转换后的字符串
要求:
函数需要的头文件
_fcvt<stdlib.h>
示例:
#include<stdio.h>
#include<stdlib.h>
int main()
{
double x = 123.45;
int a,b;
char* p;
p = _fcvt( x, 2, &a, &b );
printf("%s\n",p);
printf("%d\n",a);
printf("%d\n",b);
return 0;
}
结果:
页:
[1]