C语言编写的程序,想把其中的一个struct写进book.h文件,然后再调用使用

我这有一个程序,要求把开头定义的struct写进book.h头文件,然后再在.c文件中调用这个book.h文件,实现程序。程序太长了传不上来,下面是部分程序:麻烦帮我修改... 我这有一个程序,要求把开头定义的struct写进book.h头文件,然后再在.c文件中调用这个book.h文件,实现程序。程序太长了传不上来,下面是部分程序:麻烦帮我修改程序的各位能够把编写好了的book.h文件和修改后的.c文件发给我,非常谢谢!
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ;
LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
char ch;
Open();
while(1)
{
showmenu();
scanf(" %c",&ch);
switch(ch)
{
case '1':Appenditem();
break;
case '2':Finditem1();
break;
case '3':Finditem2();
break;
case '0':Saveandfree();
exit(0);
break;
default:
printf("Do not Have this option!");
break;
}
}
}
如果有需要完整代码的,可以发邮件给我,我发给你。
帮我修改好了的程序,也发给我邮箱吧!
sweetcandytt@hotmail.com
再次谢谢!
展开
 我来答
前沿最科技
推荐于2016-01-13 · TA获得超过142个赞
知道答主
回答量:92
采纳率:100%
帮助的人:74.3万
展开全部
我在这写下

//////////////////////
//fun.h
/////////////////////
#ifndef _FUN_H_
#define _FUN_H_

struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ; //这一句在点C文件定义也行

#endif

///////////////////////////////////
//fun.c
//////////////////////////////////
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

#include "fun.h" //把头文件包进来

LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
char ch;
Open();
while(1)
{
showmenu();
scanf(" %c",&ch);
switch(ch)
{
case '1':Appenditem();
break;
case '2':Finditem1();
break;
case '3':Finditem2();
break;
case '0':Saveandfree();
exit(0);
break;
default:
printf("Do not Have this option!");
break;
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
六媚其安莲
2019-10-02 · TA获得超过4530个赞
知道大有可为答主
回答量:3147
采纳率:31%
帮助的人:454万
展开全部
我在这写下
//////////////////////
//fun.h
/////////////////////
#ifndef
_FUN_H_
#define
_FUN_H_
struct
Libiary{
char
title[20];
char
author[20];
char
publisher[20];
char
published[20];
char
price[20];
struct
Libiary
*next;
};
typedef
struct
Libiary
LIB
;
//这一句在点C文件定义也行
#endif
///////////////////////////////////
//fun.c
//////////////////////////////////
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include
"fun.h"
//把头文件包进来
LIB
*head=NULL;
void
showmenu();
void
Appenditem();
void
Finditem1();
void
Finditem2();
void
Saveandfree();
void
Open();
void
main()
{
char
ch;
Open();
while(1)
{
showmenu();
scanf("
%c",&ch);
switch(ch)
{
case
'1':Appenditem();
break;
case
'2':Finditem1();
break;
case
'3':Finditem2();
break;
case
'0':Saveandfree();
exit(0);
break;
default:
printf("Do
not
Have
this
option!");
break;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式