bit_operations.c
C•上級
Explorer
C
初級10
中級10
上級10
memory_alloc.c
linked_list.c
bit_operations.c
function_pointer.c
file_handler.c
union_example.c
macro_function.c
pointer_array.c
struct_init.c
error_check.c
エキスパート5
マスター5
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
bit_operations.c
Click to focus
1
2
3
#define SET_BIT(x, n) ((x) |= (1 << (n)))↵
#define CLEAR_BIT(x, n) ((x) &= ~(1 << (n)))↵
#define TOGGLE_BIT(x, n) ((x) ^= (1 << (n)))
0WPM•0%•0:00•0/131(0%)|Ln 1, Col 1
UTF-8•C