摘要:
函数名函数原型头文件函数功能返回值附加说明atofdouble atof(const char *nptr)#include 将字符串转换成浮点型数返回转换后的浮点数与使用strtod(nptr,(char**)NULL)结果相同atoiint atoi(const char *nptr)#include 将字符串转换成整形数返回转换后的整型数与使用strtol(nptr,(char**)NULL,10)结果相同atollong atol(const char **nptr)#include 将字符串转换成长整型 atol会扫描参数nptr字符串,跳过前面的空格字符,直到遇... 阅读全文
posted @ 2014-03-11 13:10
宋东东
阅读(466)
评论(0)
推荐(0)

浙公网安备 33010602011771号