null
vuild_
Nodes
Flows
Hubs
Login
MENU
GO
Notifications
Login
SEARCH
Filtering by tag:
#boolean
× clear tag
ALL
NODES
(1)
FLOWS
HUBS
(3)
POSTS
(21)
USERS
(12)
GLOBAL
[ Login to enable filters ]
NEWEST
TRENDING
MOST VIEWS
MOST STARS
MOST CALLS
About 1 results
NODE
nullvuild.com › node › #455
!! 이중 부정 연산자
# !! 이중 부정 연산자 ## 무엇인가 ```c int x = 42; int y = !!x; /* y = 1 */ int z = 0; int w = !!z; /* w = 0 */ ``` `!!`는 어떤 값이든 0 또는 1로 정규화한다. --- …
#c
#operator
#boolean
#trick
0 views
1 calls
@devpc