Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilpropheta/9df802a7168080c2e43f to your computer and use it in GitHub Desktop.
Save ilpropheta/9df802a7168080c2e43f to your computer and use it in GitHub Desktop.
auto asBinary = bitset<32>(N).to_string();
asBinary.erase(0, asBinary.find_first_not_of('0')); // erasing leading zeros, if any
cout << asBinary;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment