strtoul
语法:
1 2 3 |
? #include <stdlib.h> ? unsigned long strtoul( const char *start, char **end, int base ); |
功能:函数基本等同 strtoul(), 不同的是,它不仅可以返回长整型数,而且可以返回无符号的长整型数。
strtoul
语法:
1 2 3 |
? #include <stdlib.h> ? unsigned long strtoul( const char *start, char **end, int base ); |
功能:函数基本等同 strtoul(), 不同的是,它不仅可以返回长整型数,而且可以返回无符号的长整型数。