例如:
int * pint;
void *pvoid;
pvoid = pint; /* 不過不能 pint= pvoid; */
如果要將pvoid賦給其他類型指針,則需要強制類型轉換如:pint= (int *)pvoid;