2020-02-14培训第二十七天(线上授课第五天)

今天复习了之前所学的知识。

链表,是对结构体数据来说的。

#include

#include

int main()

{

      struct stu

     {

           int num;

          char name[10];

          struct stu *next;

};

struct stu *head;

head=( struct stu *)malloc(sizeof(stu));

}

链表太难了,手不会,脑子也不会.

你可能感兴趣的:(2020-02-14培训第二十七天(线上授课第五天))