Mega Code Archive

 
Categories / C Tutorial / Data Type
 

Comparing the equality operator (==) with the = assignment operator

a b a = b a == b 53a = 3 (true)false 70a = 0 (false)false 00a = 0 (false)true