C语言里有没有函数可以把浮点型转化为字符串
C语言里有没有函数可以把浮点型转化为字符串
日期:2017-09-14 14:42:45 人气:1
有,char *gcvt(double v,int n,char *b)就是其一。其中b是存放转换后的字符串的空间首地址(指针),n是转换后的字符串的长度,v是要转换的浮点数。应用举例如下:
//#include "stdafx.h"//If the vc++6.0, with this line.#include "stdio.h"#include "stdlib.h"int main(void){ cha