处理argv字符时用到的函数
包含C 标准库 #include <stdlib.h>
序号 | 函数 & 描述 |
---|---|
1 | double atof(const char *str) 把参数 str 所指向的字符串转换为一个浮点数(类型为 double 型)。 |
2 | int atoi(const char *str) 把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。 |
3 | long int atol(const char *str) 把参数 str 所指向的字符串转换为一个长整数(类型为 long int 型)。 |
4 | double strtod(const char *str, char **endptr) 把参数 str 所指向的字符串转换为一个浮点数(类型为 double 型)。 |
5 | long int strtol(const char *str, char **endptr, int base) 把参数 str 所指向的字符串转换为一个长整数(类型为 long int 型)。 |
6 | unsigned long int strtoul(const char *str, char **endptr, int base) 把参数 str 所指向的字符串转换为一个无符号长整数(类型为 unsigned long int 型)。 |