Hi ..
What is wrong with this code ?
set<string> nk ;
bitset<3> bs1(string("100"));
nk.insert(bs1.to_string());
error: no matching function for call to `std::bitset<3u>::to_string()'
why?!
UPDATE :
Thansk , this works . But why does it work ? :D