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

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -