j
typedef struct node{
char name[20];
struct node *link;
}stud;
stud * creat(int n)
{
stud *p,*h,*s;
stud *p是struct node *link;指针,还是变量
2007-12-17 20:05
2007-12-17 20:17
2007-12-17 21:26
2007-12-17 21:35
2007-12-17 21:40