(Multiplication Via Bit Shifting) Left-shifting an unsigned integer by one bit is equivalent to multiplying the value by 2. Write function power2 that takes two integer arguments, number and pow, and calculates number * powwow Use a shift operator to calculate the result. The program should print the values as integers and as bits.
Comments
Leave a comment