제목 : 8.1.1.1. 예제. 메인함수내에 구조체 선언과 동시 초기화
글번호:
|
|
215
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/11/14 오후 8:54:37
|
조회수:
|
|
6729
|
/*
8.1.1.1. 예제. 메인함수내에 구조체 선언과 동시 초기화
*/
#include <stdio.h>
void main(void)
{
struct Student
{
char name[10];
int kor;
int eng;
int mat;
int tot;
float avg;
}Score = {"Red", 100, 95, 90};//선언과 동시에 인스턴스 생성 및 초기화
Score.tot = Score.kor + Score.eng + Score.mat;
Score.avg = (float)Score.tot / 3.0;
printf("총점 : %d, 평균 : %.2f\n", Score.tot, Score. avg);
}