Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 324 Bytes

bit-manipulation.md

File metadata and controls

7 lines (6 loc) · 324 Bytes

Bit Manipulation

  • How do you verify if an interger is a power of 2?
  • Write a program to print the binary representation of an integer.
  • Write a program to print out the number of 1 bits in a given integer.
  • Write a program to determine the largest possible integer using the same number of 1 bits in a given number.