I need to know how to put bits into a character array.
for example,
I want to put 0001 bits into a character array using C or C++.
Need your help guys. Thanks.
|
I need to know how to put bits into a character array. for example, I want to put 0001 bits into a character array using C or C++. Need your help guys. Thanks. |
|||||||
|
|
Is that really all?
If you want bit masking then it would be something like
If you provide information on what you are actually trying to do, we may be able to help you more. EDIT: Thanks for the extra information. Does this help:
Now the naming of the enums is intentionally intense for clarity. also you may notice that there are only 16 bits in the enum, instead of a possible 32 for an int. This is because you mentioned the first two bytes. Using this method, only the first two bytes of the array will be changed, using those enums. Im not sure if this code would be messed up by endianess, so you will have to make sure you test on your own machines. HTH. |
||||
|
|
You put bits in a character array using C or C++ the way you put anything into anything else -- they're all bits anyway. Since If you need help with how to twiddle bits, that's an entirely different issue and has nothing to do with |
|||
|
|
|
Maybe this more generic code will give you the idea:
|
||||
|
|
|
C doesn't support binary literals, so you'll have to represent the value as hex.
Take a look at the functions |
|||
|
|