비트연산 OR

bitwise OR
비트연산 OR

1 C[ | ]

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

2 PHP[ | ]

PHP
Copy
echo 5 | 6;
// 7

3 Python[ | ]

Python
Copy
print 5 | 6
# 7

4 같이 보기[ | ]