#include<iostream.h>
#include<bitset.h>

int main()
{
bitset bt;

bt.set(0);

cout<<bt.to_string()<<endl;
return 0;
}


I am using microsofts C++ and it doesn't reconize the bitset.h, if I remove it the the rest bombs out???

Am i using it incorrectly?

I will continue searching for other solutions. Thanks