Tagged Questions
29
votes
5answers
2k views
Why does the Perl conditional operator not do what I expect?
This snippet of Perl code in my program is giving the wrong result.
$condition ? $a = 2 : $a = 3 ;
print $a;
No matter what the value of $condition is, the output is always 3, how come?
Edit: I ...
5
votes
8answers
2k views
C# conditional AND (&&) OR (||) precedence
We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...