+ 3
a Boolean is a data-type that takes values of true or false (1/0). if the statement is correct, it's represented as 1 or true. if not: 0 or false for example: bool x = (3 == 3) will be equal to 1 but bool y = (3 == 4) will return 0
16th Apr 2017, 3:56 PM
Abeer Megahed
Abeer Megahed - avatar