C语言编程中,将数字转换为字符串的最好方法是什么?解:
使用sprintf()函数。
#include<stdio.h>
int main()
{
char result[50];
float num = 23.34;
sprintf (result, "%f" , num);
printf ( "\n The string for the num is %s" , result);
getchar ();
}
你也可以使用数字的ASCII值编写自己的函数。
评论前必须登录!
注册