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
upgrading from dlu to cuwl and ucl licensing call manager
view source code for .exe file
CISCO 5505 Firewall Dashboard Access Rules Out of Sync Errors
WMI and SqlServerWriter under VSS writers both have issues, why do they always fail?
Run the Windows 'RUN" from vb.net
Exchange 2007 Autodiscover errors 1004 1005
How to set Combobox and Textbox to ReadOnly?
How to configure Busy Lamp Field - Speed dials on a Callmanager Express
Formatting hard drive on a Mac
Dsiable SBS 2008 / Outlook 2007 Auto Account Confiuration