bitset를 사용하면 된다.


bitset<8> a1;

char *event1 = &((VstMidiEvent *)(events->events[0]))->midiData[0];

a1 = *event1;

OutputDebugString(a1.to_string().c_str());

OutputDebugString(" ");

'Development > C/C++' 카테고리의 다른 글

[memcmp]  (0) 2012.10.12
[정적변수 static]  (0) 2012.10.12
[LPSTR, LPCSTR, LPTSTR, LPCTSTR , LPWSTR, LPCWSTR 의 의미‎]  (0) 2012.08.19
[C언어 문법: Bit field (콜론 연산자)]  (0) 2012.06.16
[Call by Value와 Call by Reference]  (1) 2012.05.05
Posted by cyj4369
,