Using bit manipulation for adding two binary strings
So in this post I wanted to journal how I learnt how to add two binary numbers: Problem Statment: The normal way to do this is simple, Make both the strings equal i.e populate 0s at the beginning so both have the same length Add from right to left...

