Study/지식 in 답변1 지식인 답변 질문: 회원 관리 프로그램을 구현하는 중 검색기능을 구현하고 있는데 컴파일은 잘 되지만 실행해서 기능을 실행할시 디버깅 오류가 나서 질문을 드립니다. Run-Time Check Failure #3 - The variable 'stu' is being used without being initialized. 답변: //수정된 코드 'Student *stu' 변수를 전역으로 빼내기만 했어요^^ #include #include #include typedef struct Student{ char name[10]; int age; char address[50]; int grade; int student_number; struct Student *nextStudent; }Student; Student *start .. 2011. 9. 26. 이전 1 다음