shead.h

来自「小型的c语言程序实例 都通过编译 有word的介绍文档」· C头文件 代码 · 共 21 行

H
21
字号
#include "stdio.h"
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#define SIZE 100 /* mac.ros definition*/
typedef struct
{
    long Number;        /*Field of number     */
    char Name[20];      /*Field of name       */
    float price;        /*Field of price      */
    float discount;     /*Field of discount   */
    float memberprice;  /*Filed of memberprice*/
}product;
extern void CreatFile();         /*创建信息文件*/
extern void AddRecord();         /*增加        */
extern void DelRecord();         /*删除        */
extern void ModifyByNumber();    /*修改        */
extern void QueryBySeatNum();    /*按序号查询  */
extern void QueryByName();       /*按姓名查询  */
extern void SortByMemberPrice(); /*按会员价查询  */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?