C语言学习
yin_unix
这个作者很懒,什么都没留下…
展开
-
C语言编程实现,浮点型与字符数组相互转化
欢迎转载,请注明出处,本文地址:http://blog.csdn.net/jk050802/article/details/8628764联系邮箱:yinfork@foxmail.com简介 从浮点型转换为字符型:这里比较简单,只需要用到sprintf即可。sprintf(str,"%f",dou_num); 从字符型转换为浮点型:这原创 2013-03-02 13:44:40 · 11366 阅读 · 0 评论 -
printf函数实现的深入剖析
http://blog.tianya.cn/blogger/post_show.asp?BlogID=462085&PostID=8363874 研究printf的实现,首先来看看printf函数的函数体 int printf(const char *fmt, ...) { int i; char buf[256]; va_list arg转载 2013-10-23 21:02:33 · 629 阅读 · 0 评论