Operator Precedence is a rule used to clarify unambiguously which procedures should be performed first in a given expression
19
votes
6answers
682 views
got an unexpected answer from the x?y:z expression
Here is a simple C++ snippet:
int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy;
x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1;
y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1;
...
12
votes
4answers
526 views
Why is the Javascript operator “&&” so weird?
a = 1;
b = "1";
if (a == b && a = 1) {
console.log("a==b");
}
The Javascript code above will result in an error in the if statement in Google Chrome 26.0.1410.43:
Uncaught ...
2
votes
1answer
84 views
Pass by reference in C not working
I am having trouble getting a simple pass by reference to work the way I expect. Fist off, when I compile, I get the following warning:
warning: value computed is not used [-Wunused-value]
Second, ...
1
vote
3answers
50 views
C Operator Precedence, post-increment programming issue
Can some one explain why the output of program is
0 1 1 3 1
void main(void)
{
int i=-1,j=0,k=1,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d %d %d %d %d",i,j,k,l,m);
}
...
0
votes
2answers
48 views
Precedence and associativity of operators in C [duplicate]
Please have a look at following code snippet:
int a = 10, b;
b = (a) + (++a); //2
printf("b = %d\n", b);
Output:
b = 22
In statement 2, there are 4 distinct ...
9
votes
1answer
99 views
Calling a method on a new object in Java without parentheses: order of operations violation?
According to this table of Java operator precedence and associativity, member access has higher precedence than the new operator.
However, given a class myClass and a non-static member function ...
0
votes
1answer
36 views
PHP: Illegal string offset because [] binds tighter than ->
I am fairly new to PHP and just had a learning experience that I am sharing here to help others who, like me, may need help to find the cause of this error and also because I still don't know what the ...
-5
votes
1answer
56 views
Output of C program [duplicate]
int a[]={10,20,30,40};
int x=0;
int v=a[++x]+ ++x + a[--x];
printf("%d",v);
What will be the output of this program??
Completely confused with the output. No way it is going to be done according ...
0
votes
3answers
68 views
Confusing answers : One says *myptr++ increments pointer first,other says *p++ dereferences old pointer value
I would appreciate if you clarify this for me.Here are two recent questions with their accepted answers:
1) What is the difference between *myptr++ and *(myptr++) in C
2) Yet another sequence point ...
1
vote
4answers
85 views
Why doesn't *list++ or *(list++) work for list[4], but works fine for a pointer assigned the value of list?
I get the error " lvalue required as increment operand|" for both the printf() statements in the following program.
#include<stdio.h>
int main(void)
{
int list[4]={12,22,32,42};
printf("The ...
0
votes
3answers
35 views
Circumvent operator precedence in JavaScript
Just say I have a string like this: '1 + 2 + 3 * 4'
Is it possible to calculate it from left to right (sequentially? Linearly?) so that it equals 24 and not 15 ?
I don't know what the string is ...
1
vote
3answers
48 views
Priority of AND and OR operator in Mysql select query [closed]
I have a written a mysql select query to fetch schedule details based on origin states,origin city,destination state and destination city. In my query i have used AND and OR operator.
Here is my ...
1
vote
4answers
93 views
Confusing operator precedence: a << b + c << d
Operator + has higher precedence than << in C++, which would mean that expression a << b + c << d should be evaluated as:
a << (b + c) << d
But that does not make ...
0
votes
1answer
51 views
Does standard SQL allow grouping of union expressions?
I glanced at the SQL-92 standard, then at a SQL-92 grammar somebody put together but couldn't understand much.
As the SQL Server documentation reminds us, there are cases where the expressions should ...
1
vote
4answers
105 views
Very strange priority/precendence in c++ function [duplicate]
Why does this print out " WorldHello !" ? From my understanding, according to operator precedence, this should be evaluated left from right. But instead it seems to be right to left to right. Why is ...
0
votes
1answer
114 views
Error no match for 'operator*'
I have a class that does decimal calculations. I have all the math operators overloaded. It works great for fairly simple calculations, but fails when I need to add parens. For example, both ...
1
vote
1answer
83 views
Basic SQL user-defined functions, not working properly
I'm trying to write a function in SQL that outputs the winning percentage of a team in a season's worth of baseball.
CREATE FUNCTION
calc_winning_percentage(IN w integer, IN l integer, OUT p ...
0
votes
3answers
38 views
mysql SELECT with more than 1 OR's
I am trying to make a numrows query to see if the user is friends with the other user, by doing user1 and user2.
Here is my query, but this doesn't work.
SELECT * FROM friends
WHERE friend1 = ...
2
votes
1answer
90 views
Fortran operator precedence error for exponent with ifort
I am getting different behavior between Portland and Intel fortran compilers when evaluating a simple expression with an exponent followed by a multiply. I am pretty sure that pgf90 (and gfortran) are ...
2
votes
1answer
104 views
Why, during the execution of this program, is y never displayed as 1? [duplicate]
Taking an intro c++ class, and the professor today was talking about loops, increments, and decrements. so we were examining how many times a simple do-while loop would run, and I noticed that during ...
0
votes
1answer
30 views
Disambiguation of expressions with neighboring operators of different associativity and same precedence
Say I have an expression as follows (where ⨁ and ⨂ are binary operators which have the same precedence level but not the same associativity):
x ⨁ y ⨂ z
Would y belong to ⨁ or ⨂, and based on what ...
15
votes
2answers
220 views
Should you use '||' or lower precedence 'or' when reporting an error in Perl?
While reading the latest edition of The Camel Book I was struck by the following code fragment on p522:
use Fcntl ":flock";
eval {
local $SIG{ALRM} = sub { die "alarm clock restart" };
alarm ...
-3
votes
2answers
151 views
multiple == in if loop C [duplicate]
I had an interview last week and the interviewer asked me this operator precedence issue. Please somebody help me in understanding the logic for this program.
I am working on Ubuntu(linux)
int main()
...
3
votes
5answers
174 views
javascript string and number variables
What does the following evaluate to?
"1"+2+4
What about this:
5 + 4 + "3"
In the first case since "1" is a string, everything is a string, so the result is "124". In the second case, its ...
0
votes
1answer
108 views
Turbo C++ and GCC (using codeblocks on windows) evaluate the same ternary expression differently
I have this expression
(*p % 3 != 0) ? *p = (*p) + 1 : *p = (*p) + 2;
In Turbo C++ it evaluates to 14 if *p is 11 and to 35 if *p is 33
In GCC (Windows) it evaluates to 12 and 35 respectively ...
1
vote
1answer
173 views
Linq PredicateBuilder, grouping and operator precedence
Here is an example of the problem:
var source = new LambdasTestEntity[] {
new LambdasTestEntity {Id = 1},
new LambdasTestEntity {Id = 2},
new LambdasTestEntity ...
2
votes
3answers
116 views
dereference a pointer to a pointer to a structure
gcc 4.7.2
c89
Hello,
I am trying to dereference a pointer to a pointer to a structure, and I get this error message when I do the following:
LOG_INFO("CHANNEL ID --- %d", *channel->id);
...
0
votes
1answer
61 views
syntactic whitespaces with pyparsing's operatorPrecedence
is it possible to use some number of spaces as a delimeter? what i mean is...
given some python operator-precedence parser, i want to mix natural language with operators, in a shorthand for taking ...
1
vote
1answer
76 views
Method named “*” cause compile error
I'm little confused about this code:
abstract class Abstract3 {
type TP
protected def action(arg: TP): TP
def *[T <% TP](arg: T) = action(arg)
}
class Concrete3(str: String) ...
8
votes
3answers
199 views
What should be the output of echo ++$a + $a++ [duplicate]
In the PHP manual, operator precedence section, there is this example:
// mixing ++ and + produces undefined behavior
$a = 1;
echo ++$a + $a++; // may print 4 or 5
I understand the behavior is ...
0
votes
2answers
107 views
increment / decrement operators precedence in PHP
Could someone please help wrap my head around this piece of code as it does not seem to follow the precedence and associativity principles for increment/decrement operators in PHP: (This is from a ...
0
votes
3answers
93 views
Precedence of assignment within a conditional operator
I've created this simple program to auto-generate sequence of frames to be used in Avisynth scipt:
#include <stdio.h>
int main(void) {
const int step = 3;
const int arr[] = {31997, ...
2
votes
2answers
177 views
how to resolve this choice conflict - JavaCC
I have a javacc grammar that defines a simple scripting language with simple expressions and conditional statements that i am reviewing and trying to correct roughly defined like this :
void ...
0
votes
2answers
93 views
PostgreSQL query returning multiple rows instead of one
I have two tables: user and projects, with a one-to-many relationship between two.
projects table has field status with project statuses of the user.
status can be one of:
launched, confirm, ...
1
vote
0answers
100 views
How can I incorporate ternary operators into a precedence climbing algorithm?
I followed the explanation given in the "Precedence climbing" section on this webpage to implement an arithmetic evaluator using the precedence climbing algorithm with various unary prefix and binary ...
-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 ...
0
votes
2answers
114 views
Bison - operator precedence
I have a question about operator precedence and associativity in Bison.
In every example I see the productions are like expr 'op' expr, for example ...
1
vote
3answers
328 views
Are C/C++ operator precedence & associativity rules ever violated?
Are operator precedence & associativity rules ever violated in any C/C++ expression?
If so, can you give an example?
Assume the claims of precedence and associativity rules are:
Each ...
-35
votes
4answers
3k views
Why does i|= j|= k|= (j+= i) - - (k+++k) - - (i =+j) == 11? [closed]
I came across this code in a project I have started working on. The original developer is no longer available, and I can't make any sense of it.
k = (j = (i = 0) + 2) + 1;
return i|= j|= k|= (j+= i) ...
5
votes
3answers
305 views
Does the C/C++ ternary operator actually have the same precedence as assignment operators?
Almost all C/C++ operator precedence tables I have consulted list the ternary conditional operator as having higher precedence than the assignment operators. There are a few tables, however, such as ...
0
votes
6answers
74 views
The precendence of operators in Java is not applied
I have this piece of code and according to this page here
The below output should by right give me, 98.24 but this is giving me 68.8, what is that I am missing here?
public class Qn1
{
public ...
6
votes
6answers
314 views
a += a++ * a++ * a++ in Java. How does it get evaluated?
I came across this problem in this website, and tried it in Eclipse but couldn't understand how exactly they are evaluated.
int x = 3, y = 7, z = 4;
x += x++ * x++ * x++; // gives x = 63
...
1
vote
2answers
90 views
Can't find a bug here… C code [closed]
In this code I tried to write a function which returns 0 value if the two strings don't match, and a length of matching characters if i can find a substring in str that wholey resambles patt.
...
3
votes
3answers
166 views
Why does the expression a = a + b - ( b = a ) give a sequence point warning in c++?
Following is the test code:
int main()
{
int a = 3;
int b = 4;
a = a + b - (b = a);
cout << "a :" << a << " " << "b :" << b << "\n";
...
0
votes
1answer
52 views
How values are evaluated in this expression in GCC [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
I have an expression in a program, initial value of i = 10
int j = i++ + i++;
it sets ...
2
votes
1answer
70 views
Operators precedence in PHP [duplicate]
Possible Duplicate:
prefix/suffix increment
Official php manual on operator precedence has the following strange piece of code and comments to it:
// mixing ++ and + produces undefined ...
3
votes
1answer
87 views
Scala precedence of implied dots and parentheses
How is the following "parenthesized"?
val words = List("foo", "bar", "baz")
val phrase = "These are upper case: " + words map { _.toUpperCase } mkString ", "
Is it the same as
val words = ...
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 ...
-1
votes
2answers
126 views
SQL Logic Operator Precedence Or and ()
I am changing this
(NVL(N.col1,'-') <> NVL(O.col1,'-')) OR
(NVL(N.col2,-1) <> NVL(O.col2,-1))
to
NVL(N.col1,'-') <> NVL(O.col1,'-') OR
NVL(N.col2,-1) <> NVL(O.col2,-1) ...
1
vote
1answer
263 views
Irony .NET: Expression operator precedence
I'm using Irony to parse a DSL, which has expressions that can be combined with ANDs and ORs:
/* snip */
RegisterOperators(4, orKeyword);
RegisterOperators(5, andKeyword);
RegisterOperators(9, ...








