Code

#include <stdio.h>

int toggleFifthBit(int n) {
    return n ^ (1 << 5);
}

int main() {
    int n;
    scanf("%d", &n);
    printf("%d", toggleFifthBit(n));
    return 0;
}

Solving Approach

  • Input: Read integer N.
  • Create mask: mask = 1 << 5 (only 5th bit set).
  • Toggle bit: N = N ^ mask (XOR flips the bit).
  • Output: Print updated N.

 

 

Upvote
Downvote
Loading...

Input

8

Expected Output

40