#include<stdlio.h>
#include<stdlib.h>
typedef struct student
{
char name[20];
int age;
struct student *next;
}stu;
int main()
{
struct student *phead,*pnew,*ptail;
pnew=(struct student*)malloc(sizeof(stu));
ptail=pnew;
phead=pnew;
return 0;
}
575561532
onemoo
随时随地看视频慕课网APP
相关分类