#include #include // getch() 함수를 사용하기 위한 헤더 파일 #include //문자열 비교함수인 "strcmp"를 사용하기 위해 string.h 라이브러리를 사용. enum loginProgram { userCreate = 1, // 회원가입 userLogin = 2, // 로그인 }; struct userInfo { // struct를 이용하여 로그인 정보 저장 char userId[100]; char userPassword[100]; char userCheckPassword[100]; }; struct userInfoCompare { // struct를 이용하여 로그인 시 아이디, 비밀번호 비교 char userId[100]; char userPassword[100]; }; ..