C++相談室 part46

このエントリーをはてなブックマークに追加
944デフォルトの名無しさん
>>943
union {
int* ip;
void* vp;
};
cout << vp;
ip++;
cout << vp;
は試したか?