비트연산 OR

(비트단위 Or에서 넘어옴)
bitwise OR
비트연산 OR

1 C[ | ]

#include<stdio.h>
int main() {
   printf("%d", 5|6); // 7
}

2 PHP[ | ]

echo 5 | 6;
// 7

3 Python[ | ]

print 5 | 6
# 7

4 같이 보기[ | ]

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