K&R——第五章 指针与数组
摘要:
#include #define maxsize 5000char buf[maxsize];char *head = buf;char *new(int size){ //分配元素字长 //可用内存分配完毕 if (maxsize - (buf - head) < size) return ... 阅读全文
posted @ 2014-10-09 20:58 杰斯特丹第 阅读(124) 评论(0) 推荐(0) 编辑