Tagged Questions
2
votes
2answers
119 views
C - Order of Evaluation for equation
I have done a ton of research as to how the order of evaluation goes - but cannot figure out how it would go for this equation:
z = !x + y * z / 4 % 2 - 1
My best guess is (from left to right):
z ...
0
votes
0answers
70 views
Non-Deterministic Evaluation in C [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Can anyone give me a few examples of non-deterministic evaluations in C?
For instance, I ...
4
votes
2answers
198 views
Operator precedence and Associativity in C/C++
Please note, that this has nothing to do with Operator Precedence.. () and ++ , Undefined Behavior and Sequence Points , Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, ...
0
votes
2answers
113 views
Order of evaluation [duplicate]
Possible Duplicate:
&& and || operators
I've the following small program.
#include<stdio.h>
int main(){
int i=-3, j=2, k=0, m;
...
0
votes
0answers
55 views
C - Undefined behaviour or proper output [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
I've read about these sort of statements before, but this one is strange.
For this ...
3
votes
5answers
857 views
C/C++ Math Order of Operation
So I know that C++ has an Operator Precedence and that
int x = ++i + i++;
is undefined because pre++ and post++ are at the same level and thus there is no way to tell which one will get calculated ...
5
votes
1answer
113 views
Is the behavior of i = post_increment_i() specified, unspecified, or undefined?
Consider the following C program:
int i = 0;
int post_increment_i() { return i++; }
int main() {
i = post_increment_i();
return i;
}
With respect to the 2011 version of the C standard ...
5
votes
2answers
336 views
Pointer and post-increment funny business
What, if anything, is theoretically wrong with this c/c++ statement:
*memory++ = BIT_MASK & *memory;
Where BIT_MASK is an arbitrary bitwise AND mask, and memory is a pointer.
The intent was to ...
1
vote
2answers
182 views
c evaluation order
let's assume I have the followin code
#define CHECK(result) do{ \
if(result == 0) \
return false; \
...
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 ...
0
votes
1answer
471 views
c/c++ macro evaluation order [duplicate]
Possible Duplicate:
C Preprocessor, Stringify the result of a macro
Shortly:
#include <iostream>
float pi(){ return 3.14; }
#define PRINT(x) std::cout << #x << ...
2
votes
3answers
158 views
Operator precedence in C [duplicate]
Possible Duplicate:
why "++x || ++y && ++z" calculate "++x" firstly ? however,Operator "&&" is higher than "||"
The following program ...
0
votes
4answers
419 views
Problem with operator precedence
The O/p comes out to be x=2,y=1,z=1 which doesnt agree with the operator precedence. I was running this on Turbo c++ compiler:
void main()
{
int x,y,z,q;
x=y=z=1;
q=++x || ++y && ...
6
votes
5answers
1k views
order of evaluation of operands
In the expression a + b, is a guaranteed to be evaluated before b, or is the order of evaluation unspecified? I think it is the latter, but I struggle to find a definite answer in the standard.
Since ...
2
votes
5answers
266 views
order of evaluation of function parameters
What will be printed as the result of the operation below:
x=5;
printf("%d,%d,%d\n",x,x<<2,x>>2);
Answer: 5,20,1
I thought order is undefined yet I found above as interview question ...
16
votes
4answers
3k views
Operator Precedence vs Order of Evaluation
These 2 are highly commonly used terms in programming and extremely important for a programmer to know. And as far as i understand these 2 concepts are tightly bound, one cannot do without the other ...
1
vote
3answers
813 views
Expression x[--i] = y[++i] = z[i++], which is evaluated first?
When the evaluation of l-value precedes the evaluation of r-value and the assignment also returns a value, which of the following is evaluated first?
int i = 2;
int x[] = {1, 2, 3};
int y[] = {4, 5, ...
0
votes
3answers
1k views
Post/pre increments in 'printf' [duplicate]
Possible Duplicates:
Output of multiple post and pre increments in one statement
Post-increment and pre-increment in 'for' loop
The following code snippet
int i=0;
printf("%d ...
39
votes
13answers
24k views
Post-increment and pre-increment in 'for' loop
I want to know why there is no difference in way post and pre increment in 'for' loops are treated.
Here is the code
for(i=0;i<5;i++)
{
printf("%d",i);
}
for(i=0;i<5;++i)
{
...
1
vote
0answers
107 views
Is this program having any sequence point issues? [duplicate]
Possible Duplicates:
twisted c++ code
FAQ : Undefined Behavior and Sequence Points
#include<stdio.h>
int main()
{
int i=7,j;
j=(i++,++i,j*i);
return 0;
}
...
5
votes
2answers
341 views
Is “int i = x++, j = x++;” legal?
Pretty clear in the title, I think. I'm not entirely sure on this, and I can't find a good answer via the Googles (alas, I haven't committed to the fine art of standards-fu), so I ask:
int i = x++, j ...
10
votes
6answers
1k views
Difference between i = ++i and ++i [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
What is the difference between i = ++i; and ++i; where i is an integer with value ...
3
votes
4answers
5k views
++i + ++i + ++i in Java vs C
Possible Duplicate:
How do we explain the result of the expression (++x)+(++x)+(++x)?
int i=2;
i = ++i + ++i + ++i;
Which is more correct? Java's result of 12 or C = 13. Or if not a ...
1
vote
1answer
439 views
Output of multiple post and pre increments in one statement
I'm new to C language so plz sum1 help me out.
A C code written
int i=3;
printf("%d",++i + ++i);
Complier gvs O/P =9. How?
Thanx in advance
6
votes
5answers
247 views
C++ operators question
Given that x = 2, y = 1, and z = 0, what will the following statement display?
printf("answer = %d\n", (x || !y && z));
it was on a quiz and i got it wrong, i dont remember my professor ...
0
votes
4answers
162 views
contradiction between c-faq and my compiler
The C-faq says that the code:
int i = 7;
printf("%d\n", i++ * i++);
prints 49. Regardless of the order of evaluation, shouldn't it print 56?
When I ran this code on my Turbo C 3.0 compiler it gave ...
2
votes
2answers
237 views
which side of the expression gets evaluated first?
Will the right side of the expression get evaluated first or the left ?
void main ()
{
int i = 0 , a[3] ;
a[i] = i++;
printf ("%d",a[i]) ;
}
17
votes
7answers
2k views
Potential Problem in “Swapping values of two variables without using a third variable”
I recently came along this method for swapping the values of two variables without using a third variable.
a^=b^=a^=b
But when I tried the above code on different compilers, I got different results, ...
8
votes
11answers
1k views
why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”
Why ++x || ++y && ++z calculate ++x firstly?
However,Operator && is higher than ||?
11
votes
2answers
1k views
Multiple preincrement operations on a variable in C++(C ?)
Why does the following compile in C++?
int phew = 53;
++++++++++phew ;
The same code fails in C, why?
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
224 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 ...
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
427 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 ...
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?
118
votes
9answers
15k 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
898 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 ...

