이름 학번 성적을 입력하세요) 김연아, 100, 100
아이유, 100, 100
이효리, 100, 100 // 입력부
김연아, 100, 100
아이유, 100, 100
이효리, 100, 100 // 출력부
이런식으로 나오게 해야하는데,
#include <stdio.h>
struct people
{
char name[20];
int num[20];
int point[5];
};
typedef struct people peoples;
struct peoples list[3];
int main(void)
{
int i;
printf("이름 학번 성적을 3번 입력하세요\n");
for(i=0;i<3;i++)
{
scanf("%s, %d, %d\n",list[i].name,list[i].num,list[i].point); // 이부분에서 list[i] 부분이 식이 완전한 개체 형식에 대한 포인터여아 한다고 뜨네요..ㅠㅠ
}
for(i=0;i<3;i++)
{
printf("%s, %d, %d\n",list[i].name,list[i].num,list[i].point);
}
printf("\n\n");
return 0;
}
뭐가 문제인지 파악을 못하겠네요 ㅠㅠ..
배열을 잘못불러온건가요??