소스 검색

Explain bitwise NOT operator with StackOverflow

Swaroop C H 12 년 전
부모
커밋
e975d71040
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      07-operators-expressions.md

+ 2 - 1
07-operators-expressions.md

@@ -112,7 +112,8 @@ the interpreter interactively. For example, to test the expression
 
 :   The bit-wise inversion of x is -(x+1)
 
-    `~5` gives `-6`.
+    `~5` gives `-6`. More details at
+    <http://stackoverflow.com/a/11810203>.
 
 `<` (less than)