Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

is 0 true or false

// in the c lanaguage 0 = false  and 1 = true
bool isBald;
isBald = 0;
isBald = false;
// the last two statements are the equivalent 
 
PREVIOUS NEXT
Tagged: #true #false
ADD COMMENT
Topic
Name
5+8 =