Bitset C++ Tutorial

#include 
#include 
#include 
int main ()
{
    using namespace std;
    bitset <8> eightbits (255);
    cout << "The initial contents of eightBits: " << eightbits << endl;
    return 0;
}