드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
구조체로 학생성적 입출력문작성하는데 자꾸 에러가,,
게시물ID : programmer_2770짧은주소 복사하기
작성자 : 1급제동★
추천 : 0
조회수 : 479회
댓글수 : 1개
등록시간 : 2014/04/20 13:20:17
#include <stdio.h>
typedef struct student
{
char id;
int score;
char grade;
}student;
/*student input()
{
student stu[20];
int i;
for(i=0;i<20;i++)
{
printf("%d번째 학생의 학번,성적을 입력하세요",i+1);
scanf("%s %d",stu[i].id,&stu[i].score);
}
return stu;
}*/
void input(student *stu[])
{
int i;
for(i=0;i<20;i++)
{
printf("%d번째 학생의 학번,성적을 입력하세요",i+1);
scanf("%s %d",stu[i].id,&stu[i].score);
}
}
void main()
{
student stua[20];
input(stua);
printf("%d",stua[0].score);
}
==================
input 함수땜에 반환형을student나 void나 맞는걸로 해볼려고하는데 scanf쪽에서 에러가자꾸나네요 ㅠㅠ
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.