C++ Booleans and flow control,
C++ Booleans are a byte sized memory space which simply holds the data variable for " is it true or is it not?". Programmers usually put the word "is" in front of the variable so that it reads more English like. So a bool is likely to be named isbeautiful or isCorrect, rather than simply beautiful which could be an int rating from 1 - 10. Adding the "is" to a variable such as "cold" does not...
Read More