+ 1
explain boolean pls
4 Answers
+ 3
boolean is a data type of size 1 byte in c++. boolean only contain two values true (1) and false (0).This type of data type is used when we want to deal with true and false.
+ 2
boolean is ad at a type dat return's either true or false
+ 2
boolean is a data type which may return true or false
if it's true then the value is 1
if it's false then the value is 0
+ 1
If we only want to return either true or false then we use boolean data type ...