📄 hanshu.h
字号:
#ifndef HANSHU_H
#define HANSHU_H
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#include<conio.h>
struct stu
{
char name[20];
long num;
float score;
struct stu *next;
};
struct stu * creat(void);
void print(struct stu *head);
struct stu *del(struct stu * head,long num);
struct stu * in(struct stu *head,struct stu * stud);
struct stu * reverse(struct stu * head);
void save(struct stu * head);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -