C和指针
965攻城狮
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言指针
此处分析四种类型的指针:原创 2014-11-03 16:21:58 · 371 阅读 · 0 评论 -
malloc_free复杂结构
inventor.h/************************************************************************//* 存货记录的声明 *//******************************原创 2014-11-05 19:35:24 · 466 阅读 · 0 评论 -
malloc_free排序小程序
#include "stdlib.h"#include "stdio.h"int compare_integers(void const *a,void const *b){ register int const *pa = (int *)a; register int const *pb = (int *)b; return *pa > *pb ? 1: *pa < *pb ? -1原创 2014-11-05 15:25:46 · 398 阅读 · 0 评论
分享