Questions tagged [comparison]

Questions about data comparison and efficient ways to accomplish it.

Questions about data comparison and efficient ways to accomplish it.

113 questions
0
votes
0 answers

Is there some reason into allowing assignations in a conditional?

I bet I'm not the only one here that has had problems with something like this: you want to check something in a language that has the == operator for checking equality and instead you do something like: if (a=5) which always returns true, given…