IT기초/C 언어

[C language] 구조체변수로 배열선언

ITtechRoy 2014. 9. 8. 22:49
728x90
반응형

[C language] 구조체변수로 배열선언 

 

 #include<stdio.h>

struct student
{
 char no[10];
 char name[20];
 double math;
 double english;
 double total;
};

int main()
{
int i=0;
struct student stu[3]={
 {"20101323", "park", 80, 80, 0}, 
 {"20101323", "kin", 95, 85, 0},
 {"20101325", "lee", 100, 90, 0}
};

for(i=0; i<3; i++)
{
 stu[i].total = stu[i].math + stu[i].english;
 printf("학번 : %s, 이름 : %s\n", stu[i].no, stu[i].name );
 printf("총점 : %lf \n", stu[i].total);

 printf("\n");

}

return 0;
}

 

 

 

 

728x90
반응형