unsigned int から unsigned char * に値を取得したいのですが、ロジックが間違った値を返します
unsigned int Address = 0x0a5b0644; // this value is getting ss fun parameter
m_Address = (unsigned char*)Address; // this logic wrote in side C++ file
unsigned char * m_Address; // this is declared inside H file
ここで m_Address は値 0x0a5b0644 を取得していません
これを行うためのアイデアを得ることができますか