C++ 불린(Boolean)과 논리 연산(Logical Operation) by 고재현
- cout << true << endl; cout << false << endl;
- cout << boolalpha; cout << true << endl; cout << false << endl; cout << noboolalpha; cout << true << endl; cout << false << endl;
- 0만 false이고 나머지는 true임과 단축 평가를 이용하면 다음과 같이 널 포인터(null-pointer) 역참조를 방지할 수 있다