C语言字符串类型转换为整型或浮点怎么做

日期:2016-08-06 08:45:06 人气:1

C语言字符串类型转换为整型或浮点怎么做

#include double atof( const char *str ); 功能:将字符串str转换成一个双精度数值并返回结果。 参数str 必须以有效数字开头,但是允许以“E”或“e”除外的任意非数字字符结尾。例如: x = atof( "42.0is_the_answer" ); x的值为42.0. #include int atoi( const char *str ); 功能:将字符串str转换成一个整数并返回结果。参数str 以数字
    A+
热门评论