INTEGER(0 ... 2 24 - 1)の値を持つ型の変数が見つかりました。コードを作成した人が、uint32_t varのタイプの変数を入れることにしました。これの結果を0xFFFFFFで置きます
how does this uint32_t & OxFFFFFF is able to handle the value of INTEGER (0...224 - 1) ?
As I understand, with masking 0xFFFFFF you make the value to be all positive (or?) but how does this thing work, I think I miss a concept here.