How can this number be converted into bit in c++? -


i wish convert numbers 0x030c30c3 , 0x09249249 bit. how can that?

the binary representation can accessed , manipulated through std::bitset:

std::bitset<32> var(0x030c30c3);  std::cout << var; // binary representation 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

ruby - Nesting modules inside of a Rails eninge gem -

Eclipse formatter for java ending braces -