Computer Science, asked by Riteshsandilya, 9 months ago

illustrate bit swapping for an 8 bit integer​

Answers

Answered by fakhter
1

Explanation:

Given an integer n and two bit positions p1 and p2 inside it, swap bits at the given positions. The given positions are from least significant bit (lsb). For example, the position for lsb is 0.

Examples:

Input: n = 28, p1 = 0, p2 = 3

Output: 21

28 in binary is 11100. If we swap 0'th and 3rd digits,

we get 10101 which is 21 in decimal.

Input: n = 20, p1 = 2, p2 = 3

Output: 24

Similar questions