上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 121 下一页
摘要: 摘自:http://blog.csdn.net/hackbuteer1/article/details/6686925题目:如果字符串一的所有字符按其在字符串中的顺序出现在另外一个字符串二中,则字符串一称之为字符... 阅读全文
posted @ 2012-07-07 12:07 wdliming 阅读(118) 评论(0) 推荐(0)
摘要: 这里给出一个例子:A:int (*(*F)(int,int))(int)在cdecl里解释为:declare F as pointer to function (int, int) returning point... 阅读全文
posted @ 2012-07-07 11:39 wdliming 阅读(126) 评论(0) 推荐(0)
摘要: 这里给出一个例子:A:int (*(*F)(int,int))(int)在cdecl里解释为:declare F as pointer to function (int, int) returning point... 阅读全文
posted @ 2012-07-07 11:39 wdliming 阅读(105) 评论(0) 推荐(0)
摘要: 这里有个一个很好的C语言的声明解释在线工具——cdecl,就是你输入一个C语言的声明和定义,他会自动用英语解释声明或定义的涵义例:float(**def)[10]解释为:declare def as pointe... 阅读全文
posted @ 2012-07-07 11:03 wdliming 阅读(157) 评论(0) 推荐(0)
摘要: 这里有个一个很好的C语言的声明解释在线工具——cdecl,就是你输入一个C语言的声明和定义,他会自动用英语解释声明或定义的涵义 例:float(**def)[10] 解释为:declare def as pointer to pointer to array 10 of float 这里借个图: 漂 阅读全文
posted @ 2012-07-07 11:03 wdliming 阅读(230) 评论(0) 推荐(0)
摘要: 在网上看到一边博文,这里转载之:http://blog.sina.com.cn/s/blog_5f0d72800100hesf.html当使用带有const的指针时其实有两种意思。一种指的是你不能修改指针本身的内... 阅读全文
posted @ 2012-07-07 10:56 wdliming 阅读(90) 评论(0) 推荐(0)
摘要: 在网上看到一边博文,这里转载之:http://blog.sina.com.cn/s/blog_5f0d72800100hesf.html当使用带有const的指针时其实有两种意思。一种指的是你不能修改指针本身的内... 阅读全文
posted @ 2012-07-07 10:56 wdliming 阅读(85) 评论(0) 推荐(0)
摘要: unsigned char *test(void){ unsigned char i=0; int j=1000; char *p=NULL; for(i=0;i<j;i++) strncpy(p,"hel... 阅读全文
posted @ 2012-07-07 10:46 wdliming 阅读(103) 评论(0) 推荐(0)
摘要: unsigned char *test(void){ unsigned char i=0; int j=1000; char *p=NULL; for(i=0;i<j;i++) strncpy(p,"hel... 阅读全文
posted @ 2012-07-07 10:46 wdliming 阅读(228) 评论(0) 推荐(0)
摘要: #include int main(void){ int a[] = {6,7,8,9,10}; int *ptr = a; *(ptr++) += 123; printf("%d, %d\n",*ptr, *(... 阅读全文
posted @ 2012-07-07 10:35 wdliming 阅读(139) 评论(0) 推荐(0)
上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 121 下一页