Binary to Decimal & Decimal to Binary in C++ / Python Using Some inbuild Functions.
C++ :
Decimal to Binary
// return binary string with size 'b' which is binary representation of decimal number 'num'
bitset<b>(num).to_string();
Example :
// Binary String 't' of 65 with 32 bits
string t = bitset<32>(65).to_string();
Bin...
sspark.hashnode.dev1 min read