I have a bitset of 32 bit and i wish to add 1 to it using the binary method of addition. So I have a in binary format and now I want to add 1 to it in binary style, is there a default method to do it or will I have to create a function for it.
#include<string.h>
#include<iostream>
#include<bitset>
#include<cstlib>
int main(){
int a;
cin >> hex >> a;
bitset<32> binary(a);
}
std::bitset
is assignable from anunsigned long
orunsigned long long
.It also has accessors for these types.
example assembler output:
Note that the compiler is bright enough to realise that there's no need to do any copying or conversion.