In any programming language, there are well-defined rules stating the order in which expressions are evaluated.
5
votes
4answers
4k views
Explanation of ++val++ and ++*p++ in C
int val = 5;
printf("%d",++val++); //gives compilation error : '++' needs l-value
int *p = &val;
printf("%d",++*p++); //no error
Could someone explain these 2 cases? Thanks.
3
votes
4answers
226 views
Why does this C program give unexpected output? [duplicate]
Possible Duplicate:
C programming: is this undefined behavior?
#include<stdio.h>
main()
{
int i=5;
printf("%d%d%d",i,i++,++i);
}
my expected output is 556.
But when i executed it ...
12
votes
6answers
1k views
“x = ++x” is it really undefined?
I am using Coverity Prevent on a project to find errors.
It reports an error for this expression (The variable names are of course changed):
x=
(a>= b) ?
++x: 0;
The message is:
...
1
vote
3answers
193 views
Is this program having any sequence point issues?
#include<stdio.h>
int main()
{
int i=7,j;
j=(i++,++i,j*i);
return 0;
}
j=(i++,++i,j*i);Is this well defined ? Let me clear my doubt.
2
votes
3answers
428 views
difference between c's expression and c++'s expression
int main()
{
int i=3;
(++i)++;
printf("%d",i);
}
This programs works with g++ compiler but not gcc.
If i write i++++ or ++i++ it doesn't work in cpp also.
I think there is ...
11
votes
5answers
376 views
Is “*p = ++(*q)” undefined when p and q point to the same object?
after reading about sequence points, I learned that i = ++i is undefined.
So how about this code:
int i;
int *p = &i;
int *q = &i;
*p = ++(*q); // that should also be undefined ...
3
votes
4answers
213 views
Is there specific documentation for the behavior of “i=i--” in gcc?
Once again, our best loved "i=i--" -like issues. In C99 we have:
6.5 Expressions #2: Between the previous and next sequence point an
object shall have its stored value
modified at most once
...
0
votes
4answers
185 views
Input Puzzler in C [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
int main()
{
int a=5,s;
s=++a + ++a;
printf("%d",a);
printf("%d",s);
}
output is ...
1
vote
1answer
122 views
Simple? Message Passing in Mathematica 7
Uu[z_,x_,t_] := A1[z]*F[t*a*x]
Wu[z_,x_,t_] := B1[z]*F[t*a*x]
Pu[z_,x_,t_] := C1[z]*F[t*a*x]
eq1 = D[Uu[z,x,t],t]==-R*D[Pu[z,x,t],x];
C1z = DSolve[eq1,C1[z],z];
eq2 = ...
3
votes
2answers
2k views
Oracle SQL clause evaluation order
In Oracle, which clause types get evaluated first? If I had the following ( pretend .... represent valid expressions and relation names ), what would the order of evaluation be?
SELECT ...
FROM ...
-3
votes
4answers
227 views
Why are string::append operations behaving strangely?
look at the following simple code:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s("1234567890");
string::iterator i1 = s.begin();
...
19
votes
3answers
1k views
SQL UPDATE order of evaluation
What is the order of evaluation in the following query:
UPDATE tbl SET q = q + 1, p = q;
That is, will "tbl"."p" be set to q or q + 1? Is order of evaluation here governed by SQL standard?
...
9
votes
14answers
922 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 ...
5
votes
1answer
849 views
Initializer list *argument* evaluation order
So, the C++ standard requires that class members be initialized in the order in which they are declared in the class, rather than the order that they're mentioned in any constructor's initializer ...
11
votes
5answers
2k views
How do we explain the result of the expression (++x)+(++x)+(++x)?
x = 1;
std::cout << ((++x)+(++x)+(++x));
I expect the output to be 11, but it's actually 12. Why?
4
votes
4answers
962 views
How do I make a Lazy List in an Eager Language?
I wanted to make a lazy list in Scheme. This is what I have so far.
;; Constructor for Pairs
(define (cons-stream a b)
(cons a (λ() b)))
;; Selectors
(define (car-stream a-stream)
(car ...
138
votes
8answers
16k views
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
int main(int argc, char ** argv)
{
int i = 0;
i = i++ + ++i;
printf("%d\n", i); // 3
i = 1;
i = (i++);
printf("%d\n", i); // 2 Should be 1, no ?
volatile int u = 0;
u = u++ ...
2
votes
8answers
906 views
Understanding evaluation of expressions containing '++' and '->' operators in C
Consider this example:
struct {
int num;
} s, *ps;
s.num = 0;
ps = &s;
++ps->num;
printf("%d", s.num); /* Prints 1 */
It prints 1.
So I understand that it is because according to ...
21
votes
6answers
8k views
Compilers and argument order of evaluation in C++
Okay, I'm aware that the standard dictates that a C++ implementation may choose in which order arguments of a function are evaluated, but are there any implementations that actually 'take advantage' ...
1
vote
1answer
2k views
SSRS Expression Evaluation Issue
I'm having an issue with expressions within reports. I'm coloring the background of a textbox within a table depending on the value within it. The text in the field relates to backups for a SQL ...
1
vote
8answers
543 views
Confusing return statement
I'm failing to understand exactly what the IF statement is doing, from what I can see it is checking if the variable x is equal to the int 0. If this is true the ABSOLUTE value of the variable y is ...