当前位置: 代码迷 >> 单片机 >> Keil float转字符串有关问题
  详细解决方案

Keil float转字符串有关问题

热度:46   发布时间:2016-04-28 16:02:43.0
Keil float转字符串问题
我需要把一个float类型的变量转化为字符串,怎么做呀?有什么函数可用吗?谢谢

------解决方案--------------------
#include <stdio.h>
//
float y;
char text[10];
y=3.14159;
sprintf(text,"%8.3f",y);//text=3.1412
  相关解决方案