//typedef 키워드!!
// 새로운 타입으로 정의 하겠다!!
#include <stdio.h>
//typedef int INT;
/*typedef struct Student
{
int a;
}STUDENT;*/
struct Student
{
int Snum;//학번
int age;//나이
int Grade;//학년
char name[20];//이름
};
typedef struct Student STUDENT;
void main()
{
}
by 훈강