Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ShahjalalShohag/code-library
/ toggle_kth_bit
Function
toggle_kth_bit
Basics/Bitwise Operations.cpp:51–53 ·
view source on GitHub ↗
Toggles the kth bit of x and returns the result
Source
from the content-addressed store, hash-verified
49
50
// Toggles the kth bit of x and returns the result
51
int toggle_kth_bit(int x, int k) {
52
return x ^ (1 << k);
53
}
54
55
// Checks if x is a power of 2
56
bool check_power_of_2(int x) {
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected