newbie question;
I have two binary numbers; say for example; 0b11 and 0b00. How can I combine the two numbers so that I get 0b1100 (i.e. place them right next to each other to form a new number)
newbie question; I have two binary numbers; say for example; 0b11 and 0b00. How
Share
With bitwise shift and or operators: