int free_board()
{
    FILE * fp;
    int count = 0;
    char input;
    fflush(stdin);
    system("cls");
    fp = fopen("dataBase.txt", "a");
    printf("\\를 입력할 때까지 실행합니다.\n");
    while (1)
    {
        input=fgetc(stdin);
        // fflush(stdin); // 이 명령문이 포함되면 한 자 씩만 읽어들인다.
        if ('\\' == input) // \를 입력하면 입력 종료
        {
            // fflush(stdin); // 이 명령문이 포함되면 y가 통하고, 제외되면 Y가 통한다???
            printf("정말로 종료하시려면 y 또는 Y를 눌러주세요\n");
            if (fgetc(stdin) == 'y' || fgetc(stdin) == 'Y')
            {
                break;
            }
        }
        fflush(stdin);
        fputc(input, fp);
    }
    fclose(fp);
    return 0;
}