Computer Science, asked by krishnaprasanna4262, 1 year ago

Which type is best suited to represent a logical value in c++ objective type que?

Answers

Answered by palakshri
1
I don't know sorry ,
Answered by bestanswers
0

                                The data type best suited to represent logical values in C++ is the Boolean type, named after George Boole, who first defined an algebraic system of logic in the mid 19th century. Because logical values can be either true or false. The values true or false have been added as keywords in the c++ language. The default value of true is 1, and false is 0.

Similar questions