本人初学;求教关于指针变量和malloc函数的问题
求教关于malloc函数的问题#include <stdio.h>
#include <malloc.h> /*包含动态内存分配函数的头文件*/
#define N 10 /*N为人数*/
typedef struct node
{
char name[20];
struct node *link;
}stud;
stud * creat(int n) /*建立单链表的函数,形参n为人数*/
{
stud *p,*h,*s; /* *h保存表头结点的指针,*p指向当前结点的前一个结点,*s指向当前结点*/
int i; /*计数器*/
if((h=(stud *)malloc(sizeof(stud)))==NULL) /*分配空间并检测*/
{
printf("不能分配内存空间!");
exit(0);
}
h->name[0]='\0'; /*把表头结点的数据域置空*/
h->link=NULL; /*把表头结点的链域置空*/
p=h; /*p指向表头结点*/
for(i=0;i<n;i++)
{
if((s= (stud *) malloc(sizeof(stud)))==NULL) /*分配新存储空间并检测*/
{
printf("不能分配内存空间!");
exit(0);
}
p->link=s; /*把s的地址赋给p所指向的结点的链域,这样就把p和s所指向的结点连接起来了*/
printf("请输入第%d个人的姓名",i+1);
scanf("%s",s->name); /*在当前结点s的数据域中存储姓名*/
s->link=NULL;
p=s;
}
return(h);
}
main()
{
int number; /*保存人数的变量*/
stud *head; /*head是保存单链表的表头结点地址的指针*/
number=N;
head=creat(number); /*把所新建的单链表表头地址赋给head*/
}
其中creat函数中,p h s 都是结构体指针变量,为什么用malloc函数开辟一段空间以后,把这个空间的首地址赋给 h ,就能直接引用h->name[0] , 我认为指针变量应该只是一个用来存储地址的容器,应该是先定义一个结构体,然后把他的地址赋给一个指针变量,才能指向其中的变量啊,
比如
#include<string.h>
main()
{
struct student
{
long num;
char name[20];
char sex;
float score;
};
struct student stu_1;
struct student * P;
p=&stu_1;
p->num=89101;
......
}
malloc只是开辟了一个和 stud结构体容量相等的连续的地址,怎么把首地址赋给 h , h就能指向结构体中的变量了?
比如
struct student
{
long num;
char name[20];
char sex;
float score;
};
struct student * p;
p=(struct student *)malloc(sizeof(struct student));
p->num=89101;
......