0
Adding boolean values C++
I see a lot of challenge questions where you add boolean values, I normally guess 1 or 0 because boolean can only be true or false, but I am always wrong. What is the rule for adding booleans in C++?
1 ответ
0
you don't add booleans but you can compare them. are you referring to && and || notation?