9.5 프로젝트.c
(생략)
int collection[5] = { 0, 0, 0, 0, 0 };
void initCats();
void printCat(int selected);
int checkCollection(); ----------------------- ➋ 모은 고양이 확인 함수 선언
int main(void) {
srand(time(NULL));
initCats();
while (1) {
printf("두근두근! 어느 고양이의 집사가 될까요?\nEnter를 눌러 확인하세요!");
getchar();
int selected = rand() % 5;
printCat(selected);
collection[selected] = 1; ------------- ➊ 뽑은 고양이를 작은 상자에 넣었다고 표시
int collectAll = checkCollection(); --- ➍ 모은 고양이 확인 함수 호출
}
return 0;
}
void initCats() { (중략) }
void printCat(int selected) { (중략) }
int checkCollection() {} ---------------------- ➌ 모은 고양이 확인 함수 정의