用发呆的时间来理清自己的思绪
发布时间:2014-09-13 20:30:17
今天,发现一个关于int型整数的反序问题,在此做了一个整理,代码如下: 点击(此处)折叠或打开#include int reverse_int_data(int *data){ int i,j,k; .........【阅读全文】
发布时间:2014-09-13 00:15:02
1.atoi函数的原型 int atoi(const char *nptr); 2.GNU官方解释The atoi() function converts the initial portion of the string pointed to by nptr to int. 3.注意要点: (1)实现把输入的字符串转换成对应的整数。 (2)应该考虑到以负号、正号、空格和TAB键开头的情况 (3)假如第一个字符是(.........【阅读全文】
发布时间:2014-09-11 10:32:18
1.strcpy函数的原型 char *strcpy(char *dest, const char *src)1.1 GNU官方解释 The strcpy() function copies the string pointed to by src, including the terminating null byte ('\0'), to the buffer pointed to .........【阅读全文】
发布时间:2014-09-10 16:30:37
一、tpyedef typedef是C语言语句,其功能是用户为已有数据类型取“别名”,并没有创建一个新的类型,只是已有类型的一个代理而已,目的是为了达到简化代码,见名知意的目的。例如: typedef int INT;则INT就是int的代理,此时要定义两个int型的变量,则可以使用如下语句:INT a,b; 《===》.........【阅读全文】
发布时间:2014-09-10 10:56:38
点击(此处)折叠或打开#include #include int main(int argc, const char *argv[]){ char buf[64]; char tmp; &n.........【阅读全文】