1、浮点型====>字符串流,用sprintf。
#include
char text[10];
float vf = 3.11232;
char* p = &text;
void main(void)
{
sprintf(p,"%7.5f",vf);
printf(p);
printf("
");
}
2、字符串流====>浮点型,用atof。
#include
#include
void main( void )
{
char* s;
float x;
s = " -2309.555";
x = atof( s );
printf("%f
",x);
}