자료형의 별칭을 지정할 수 있다. // typedef (자료형) (별칭) typedef char c8; typedef unsigned char u8; typedef short d16; typedef unsigned short u16; typedef int d32; typedef unsigned int u32; typedef float f32; typedef double f64; 이제 우리는 int age = 19; 을 하는 대신 d32 age = 19; 를 할 수 있다. // typedef (자료형)* (별칭) typedef char* charptr; typedef short* shortptr; typedef int* intptr; 이와 같이 포인터를 재정의 할 수 도 있다. 이제 우리는 int* p1;..