淡泊明志 宁静致远
分类: C/C++
2006-12-14 14:38:12
【C语言库函数源代码】
【本程序在Dev C++ 4.9.9.2 下编译通过】
/*
这个函数调用的是库函数中的
strtod()函数,关于这个函数的
源代码后面将会给出。
*/
#include
double my_atof(char *str)
{
return
strtod(str,0);
}
int main()
{
char * str =
"12345.6789";
printf("%f\n",my_atof(str));
str = "-12345.6789";
printf("%f\n",my_atof(str));
str = "9.8546721E+4";
printf("%f\n",my_atof(str));
str = "-985467.21e-4";
printf("%f\n",my_atof(str));
system("pause");
return 0;
}