#ifdef HAVE_CONFIG_H
#include
#endif
#include
#include
using namespace std;
void
ThirdVariant(void)
{
//my own idea, STL
char Character = 0x57; //01010111
cout << "Character " << Character << endl;
const int BitMask = 0x08; //00001000
bitset <8> BitSet (Character); //up to 32 bits == 4 bytes
cout <<
(
Read more... )