안녕하세요 다음과 같은 코드를 실행했는데
비쥬얼스튜디오에선 실행이 안되고 특별히 집어주는 오류도 없구요
ideone에선 입력값을 넣어도 출력이 empty로 뜨네요 무슨 문제인지 모르겠습니다. 도와주십시오!!!
http://ideone.com/DRPAvC#include<stdio.h>
typedef struct student
{
char no[10];
char name[20];
double math;
double english;
double total;
}ST;
int main(void)
{
ST stu[3];
int i = 0;
for (i = 0; i < 3; i++)
{
printf("학번 이름 총점 순으로 입력하세요 : ");
scanf("%s, %s, %lf", stu[i].no, stu[i].name, &stu[i].total);
}
printf("\n");
printf("학생의 정보를 출력합니다. \n");
for (i = 0; i < 3; i++)
{
printf("%s %s %lf", stu[i].no, stu[i].name, &stu[i].total);
printf("\n");
};
return 0;
}