1
0
40
168
584
263
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 #i...