구조체 도서관리프로그램 질문
루리
#include stdio.h
#include stdlib.h
struct book
{
char name[20];
char maker[20];
char cps[20];
int bor;
};
int main()
{
int total = 0;
struct book book[100];
int input;
printf(도서 관리 프로그램\n1. 책 등록\n2. 책 대출\n3. 책 반납\n4. 책 검색\n5. 프로그램 종료\n);
scanf(%d,&input);
switch(input)
{
case 1:
{
add_book(book[total],total);
}
case 2:
{
}
case 3:
{
}
case 4:
{
}
case 5:
{
break;
}
defalut :
{
printf(뭔소리냐.);
}
}
system(pause);
return 0;
}
char add_book(struct book, int total)
{
printf(제목 : );
scanf(%s,book[total].name);
printf(저자 : );
scanf(%s,book[total].maker);
printf(출판사 : );
scanf(%s,book[total].cps);
total += 1;
return 0;
}구조체를 이용해서 도서관리 프로그램을 만드는중인데 add_book 쪽에 book부분에서 형식 이름을 사용할수 없다네요.그리고 이런 방법으로 하는게 맞는지 모르겠습니다.
-
나래
구조체를 사용 하실 때 구조 형식 선언을 안해서 그래영 ㅋㅋ 폰에서 덧글 쓴거라 님의소스가 안보임 ㅠ 임의적으로 제가 하는보고 이해하시길
struct book{
int name;
};
int main(){
book s; // 구조체 book의 선언변수로 s를 선언
s.name // 북의 구조에서 name 변수사용은 요렇게 사용ㄱㄱ
이해 되셧나용? ㄷㄷ