먼저 Typedef란 무엇이냐 Type Definition으로, 타입정의 자료형 자체를 인스턴스로 생성할 수 있습니다. typedef unsigned int UINT; UINT라는 이름으로 unsigned int형을 사용하겠다. 요런 뜻입니다. //(1) struct _tagPoint{ int x; int y; }POINT; //(1-1) struct _tagPoint{ int x; int y; }; //(2) typedef struct _tagPoint{ int x; int y; }POINT; //(2-1) typedef struct{ int x; int y; }POINT; 하나씩 설명하겠습니다. (1)에서는 PO..