Tagged Questions
-1
votes
2answers
87 views
&& || operator interaction
I need to know how the logical AND an OR operators are evaluated in a statement. I have found a few sites that try to explain it but I can't make heads nor tails of them. I know I can use braces to ...
3
votes
4answers
104 views
Require explanation for the output
Code:
#include<stdio.h>
int main()
{
int j = 7, i = 4;
j = j || ++i && printf("you can");
printf("%d %d",i,j);
return 0;
}
Output:
4 1
Code Link
The precedence of ...
3
votes
4answers
161 views
c++ logical alternative operator
During work over a simple project I have found situation that I don't fully understand. Consider following code:
#include <iostream>
using namespace std;
bool test(int k)
{
cout << ...
0
votes
6answers
133 views
Complex if condition
In a legacy code, I have encountered the following expression:
if (!m_bMsOcs && bChannelData || m_bMsOcs && !bStunType)
I guess the intended condition was
if ((!m_bMsOcs && ...
1
vote
5answers
2k views
Precedence of Logical Operators in C [duplicate]
Possible Duplicate:
why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”
If you look ...
9
votes
14answers
893 views
Which side (left or right) of && (and) operator evaluated in C++
Which order is the and && operator evaluated
For example the following code
if (float alpha = value1-value2 && alpha > 0.001)
//do something
threw an exception that alpha is ...
14
votes
3answers
9k views
SQL Logic Operator Precedence: And and Or
Are the two statements below equivalent?
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3,4,5) AND some_other_expr
and
SELECT [...]
FROM [...]
WHERE some_col in (1,2,3) or some_col in (4,5) AND ...
3
votes
7answers
13k views