Microsoft
Software
Hardware
Network
Question : Reading bits in C++
Hi,
Let's say I have a five byte data element "char m_TxBuf[5]" and I need to determine if a bit is set (high or not) in one of the elements, let's say for example in m_TxBuf[2] --> bit 3. (00001000) how do I determine this in C++.
Thanks for your support!
Answer : Reading bits in C++
First of all, it's best to use unsigned char when dealing with bits.
And to answer your question, this checks whether bit 3 is set in the third byte :
1: 2: 3: 4: 5:
unsigned char m_TxBuf[5]; if (m_TxBuf[2] & 0x08) { /* the bit is set */ }
Random Solutions
How do I delete all Outlook (2010) message prior to this year?
Need Microsoft VBA to loop through clipboard and add records via sql statement executed by Currentdb?
Crystal reports
Filter out a calculated formula in group header
Computer isn't allowing access anymore
Global SG's to Universal SG's
Moving drives from one ax100 to another chassie
.htaccess Redirect Folder BUT Keeping Additional Strings / Variables?
How to consume a web service using SOAP in VB.NET windows application?
How to move a DC from one Win 2K3 Server to another via a backup method?