Tagged Questions

13
votes
11answers
2k views

In C++, why does true && true || false && false == true?

I'd like to know if someone knows the way a compiler would interpret the following code: #include <iostream> using namespace std; int main() { cout << (true && true || false ...
5
votes
5answers
236 views

Difference between these two statements? - C++

I'm a programming student trying to better understand pointers, one of the things I learned is that you can set a pointer to NULL. My question is, what's the difference between these two statements? ...
3
votes
2answers
526 views

Equivalence of boolean expressions

I have a problem that consist in comparing boolean expressions ( OR is +, AND is * ). To be more precise here is an example: I have the following expression: "A+B+C" and I want to compare it with ...
3
votes
6answers
307 views

Is “boolean short circuiting” dictated by standard or just mostly used as optimization? [closed]

EDIT: Found duplicate once I learned the term for this behaviour. Close as duplicate please. Consider this Class* p = NULL; if( p != NULL && p->Method() == OK ){ // stuff } On all ...
1
vote
1answer
192 views

Decimal to Binary Conversion

I was writing a function for conversion between Decimal and Binary base number systems and here's my original code: void binary(int number) { vector<int> binary; while (number == true) ...
0
votes
3answers
160 views

c++ search text n boolean mode

basically have two questions. 1. Is there a c++ library that would do full text boolean search just like in mysql. E.g., Let's say I have: string text = "this is my phrase keywords test with boolean ...