
常见C语言易错知识
New_bee_xu
The future has arrived.It's recommence now!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言--数组与指针--基础易错知识练习笔记01
C语言--数组与指针--基础易错知识练习笔记 https://tool.lu/coderunner/?id=73R Notes:着重关注&ints+4,&ip+4的值。 #include <stdio.h> #include <stdlib.h> int ints[20] = { 10,20,30,40,50,60,70,80,90,1...原创 2019-08-21 23:05:30 · 196 阅读 · 0 评论 -
字符串查找一个字符的函数:strchr和strrchr之比较以及查找任意几个字符
运行程序https://tool.lu/coderunner/?id=73R #include <stdio.h> #include <stdlib.h> #include <string.h> char string[20] = "Hello there, honey"; char *ans,*ans2,*ans3; void main(void) {...原创 2019-08-22 22:42:47 · 325 阅读 · 0 评论