2014年10月9日

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 杰斯特丹第 阅读(121) 评论(0) 推荐(0) 编辑

导航