C/C++库函数
文章平均质量分 80
S031302306
Hello world!
展开
-
strtol 函数详解
样题: POJ 2105 +----------------+ | strtol | +----------------+ i.e. string to long long int strtol(const char *nptr, char **endptr, int base) strtol()会将nptr指向的字符串,根据参数base,按权转化转载 2016-07-29 07:39:37 · 5823 阅读 · 0 评论 -
C/C++中的sizeof分析
1.1 基本概念 sizeof是C语言中的一种单目操作符,它并不是函数。它以字节形式给出了其操作数的存储大小。不同的操作系统和编译器可能会有不同的结果。下面的测试结果是在Win10 TDM-GCC 4.8.164-bit Release获取的。 1.2 使用方法 1.2.1 用于基本数据类型 使用形式: Sizeof(type) Sizeof(int) //4原创 2016-12-28 14:49:56 · 426 阅读 · 0 评论