话说头文件是这样写的吗?
程序代码:
#ifndef address_book #define address_book #include<stdio.h> #include<string.h> #include<stdlib.h> #define A 办公类 #define B 个人类 #define C 商务类 //*******定义结构体*************** typedef struct people { char name [10]; char phone[12]; char type [10]; char email[16]; }MAN; //*******函数声明*************** void password(void); //验证密码 void broswer (MAN*stud, int n); //查看名片 int input (MAN*stud, int n); //输入数据 #endif