个性化阅读
专注于IT技术分析

在C中将数字转换为字符串的最佳方法是什么?

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值编写自己的函数。

赞(1)
未经允许不得转载:srcmini » 在C中将数字转换为字符串的最佳方法是什么?

评论 抢沙发

评论前必须登录!