비트연산 NOT

bitwise NOT
비트연산 NOT

1 C[ | ]

#include<stdio.h>
int main() {
   printf("%d",~2); // -3
}

2 PHP[ | ]

echo ~2;
// -3

3 Python[ | ]

print ~2
# -3

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}