비트연산 NOT

Jmnote (토론 | 기여)님의 2019년 3월 23일 (토) 11:48 판 (→‎PHP)
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 }}