首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴chenmeng1992的代码贴全部
#include<iostream.h>
#include<malloc.h>
struct W{
    int x;
    W *next;
};
void main(){
    W *q;
    W *head;
    W *s;
    W *a;
    head=(W *)malloc(sizeof(W));
......................
阅读全部 | 2012年12月3日 18:24
1
chenmeng1992