소스를 작성해서 돌리니까 원인을 잘 모르겠습니다. 도와주세요
희미한눈물
비주얼 스튜디오2008로 돌리니 이렇게 오류가 뜬 사진 입니다.
프로그램을 작성을 돌렸는데이렇게 뜨는데해결을 어떻게 해야할지 도움이 필요합니다. ㅠ.ㅠ#include stdio.h
#include stdlib.h// 구조체 정의
typedef struct student_tag{
int ID;
char name[32];
char hobby[128];
} student;
// 함수헤더
student* SaveStudents(int count);
void PrintStudents(student* ptrStudent, int count);
int main()
{
int number = 3;
// 요청만큼의 학생정보가 담긴 구조체 배열 반환
student* ptrStudent = SaveStudents(number);
// 입력된 학생카드 출력
PrintStudents(ptrStudent, number);
// 리소스 해제
free(ptrStudent);
return 0;
}
// 학생카드를 저장합니다.
student* SaveStudents(int count)
{
// 구조체 배열을 동적으로 메모리 할당
student* students = (student*)malloc(sizeof(student) * count);
printf(--------------------------------\n);
printf(%d명의 학생 기록를 입력하세요. \n, count);
printf(--------------------------------\n); // 포인터 연산으로 구조체 접근 (students + loop)-
for(int loop = 0; loop count; loop++)
{
// ID 자동부여
(students + loop)-ID = loop + 1;
printf(ID: %d \n, (students + loop)-ID);
// 이름
printf(이름: );
scanf(%s, (students + loop)-name);
// 취미
printf(취미: );
scanf(%s, (students + loop)-hobby);
printf(\n);
}
// 할당받은 구조체 배열의 포인터 반환
return students;
}
// 학생카드를 출력합니다.
void PrintStudents(student* ptrStudent, int count)
{
printf(\n\n\n);
printf(--------------------------------\n);
printf(학생카드 \n);
printf(--------------------------------\n);
for(int loop = 0; loop count; loop++)
{
printf(id : %d \n, (ptrStudent + loop)-ID);
printf(name : %s \n, (ptrStudent + loop)-name);
printf(hobby: %s \n, (ptrStudent + loop)-hobby);
printf(\n\n);
}
printf(\n\n\n);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |