上一页 1 ··· 11 12 13 14 15
  2013年8月11日
摘要: #include #include #include typedef struct test{ int date; struct test *pTest;}* PTEST,TEST;PTEST create_head();void shuchu(struct test *);int main (void){ PTEST p_head; p_head=create_head(); shuchu(p_head); return 0;}PTEST create_head(){ int len; int i; int val; PTEST p... 阅读全文
posted @ 2013-08-11 16:26 西瓜异族 阅读(222) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15