一些很容易被忽略但又很有用的 c 语言函数...
时间:2010-08-10 来源:morgan_xww
#include <stdlib.h>
把字符串转化成浮点数:double atof( const char *str );
或 double strtod( const char *start, char **end );
把字符串转化成整型数:int atoi( const char *str );
长整型:long atol( const char *str );
二分查找:
void *bsearch(const void *key, const void *buf, size_t num, size_t size, int (*compare)(const void *, const void *));
#include <math.h>
以十为底的对数函数:double log10(double x);
以e(=2.71828)为底:double log(double x);
相关阅读 更多 +