http://blog.naver.com/ruvendix
typedef 예약어
typedef structStudentInfo
{
char Name[10];
char Address[50];
int iGrade;
}StudentInfo;
StudentInfo StudentList[100];
구조체 변수를 선언할 때 struct를 쓰기 싫다!
그러면 typedef를 활용하라!
반드시 구조체 변수가 필요!
구조체 이름과 같아도 됨!
typedef는 구조체 말고도 다양한 곳에서 쓰임!