12.3-PointersOnC-20220331

单链表
按照教材的二级指针法
#define _CRT_SECURE_NO_WARNINGS 1
#include
#include
#include
#define LENWORD 11
typedef struct node{
struct node *link;
char value[LENWORD];
}Node;

char *my_fgets(char *p,int n);
int ClearList(Node **p);
int AddList(Node **p);
int ShowList(Node **p);
int main(){
Node *root=NULL;
ClearList(&root);
for(fputs("Input the word:->",stdout);AddList(&root)==1;fputs("Input the word:->",stdout));
ShowList(&root);
ClearList(&root);

12.3-PointersOnC-20220331最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/28147.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>