当前位置: 代码迷 >> C语言 >> j
  详细解决方案

j

热度:147   发布时间:2007-12-17 20:05:21.0
j
typedef struct node
{
char name[20];
struct node *link;
}stud;

stud * creat(int n)
{
stud *p,*h,*s;


stud *p是struct node *link;指针,还是变量
搜索更多相关的解决方案: stud  node  struct  变量  link  

----------------解决方案--------------------------------------------------------
这是链表,不知道你要问的问题是什么?
stud *p  是指针变量,他首先是一个变量,然后才是一个指针.
----------------解决方案--------------------------------------------------------
stud是变量 p是指针 指向他吗?
  还是指向它内部的struct node *link
----------------解决方案--------------------------------------------------------
stud  p关系平等吗?
他们什么关系?
----------------解决方案--------------------------------------------------------
不过可以这样定义指针呀!
我知道 都是
int *p 前面是数据类型
怎么 还可用变量来定义指针呀?
----------------解决方案--------------------------------------------------------
  相关解决方案