All submissions

Code

#include <stdio.h>

int toggleFifthBit(int n) {
    // Write your code here
    int mask = ( 1U << 5 );
    return n ^ mask;
}

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

Solving Approach

making use of "Exclusive OR" operation

 

 

Loading...

Input

8

Expected Output

40