[C언어 소스] 성적 관리 프로그램 - 이중 연결리스트언제나 휴일 티스토리 //성적 관리 프로그램 - 이중 연결리스트//생성 순서로 연결 리스트에 보관//중복 데이터 처리 없음//입력 오류에 관한 예외 처리 없음 #include #include #include #include #define MAX_NLEN 20 //최대 이름 길이#define MAX_SUBJECT 3 //과목 수typedef struct Student {//학생 구조체 정의 char name[MAX_NLEN + 1];//이름 int num; //번호 int scores[MAX_SUBJECT];//국,영,수 성적 struct Student *next; struct Student *prev;}Student; const char *stitle..