
c
yuhaojin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
函数指针和函数指针数组的一个实例
给出一个函数指针和函数指针数组的参考实例,理解一下,应该有收获。 1.参考代码: #include<stdio.h> int func1(int a) { printf("func1\n"); return 0; } int func2(int b) { printf("func2\n"); return 0; }...原创 2019-11-23 12:04:16 · 233 阅读 · 0 评论 -
continue在switch和for 中的使用
简单举个例子说明continue在for和switch中的使用原创 2017-03-08 17:02:07 · 4716 阅读 · 0 评论