The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
4answers
90 views

Why doesn't comma operator seem to work between a “if” statement and an “else” statement in my code?

I know a statement like the following (commas in place of semi-colons) looks odd: if(a<b)printf("Hello\n"),a+=5,b/=5,printf("%d,%d",a,b); But it works perfectly fine and I had read that it's ...
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 ...
5
votes
2answers
173 views

Is something like “for(i=1;i<=10;printf(”%d\n";i),i++) valid and UB-free in C?

Are the following two code blocks exactly the same and achieve the same thing?It displays the same thing when I run the program,but I would appreciate some rigorous explanation. for(i=1;i<=10;i++) ...
4
votes
4answers
134 views

Yet another sequence point query: how does *p++ = getchar() work?

§5.1.2.4.16 EXAMPLE 7 The grouping of an expression does not completely determine its evaluation. In the following fragment: #include <stdio.h> int sum; char *p; /* ... */ sum = sum * 10 - ...
5
votes
2answers
133 views

Are there “sequence-point” issues with statements like “int a=4,*ptr=&a;” or “x+=4,y=x*2;”?

My understanding of the whole sequence points thing is basic. All I have is some crude intuitive idea that "once a sequence point is encountered, we can be sure all side effects of previous ...
15
votes
1answer
155 views

Does int a=1, b=a++; invoke undefined behavior?

Does int a=1, b=a++; invoke undefined behavior? There is no sequence point intervening between the initialization of a and its access and modification in the initializer for b, but as far as I can ...
2
votes
2answers
66 views

Is indexing a new map element and having something that reads it assigned to it undefined behaviour, or just unspecified?

After answering this question, there was a long discussion over whether the code in question was undefined behaviour or not. Here's the code: std::map<string, size_t> word_count; ...
4
votes
1answer
123 views

Why are operations on primitive types unsequenced instead of indeterminitely sequenced?

If i is an int, expressions like ++i + ++i are undefined behavior since there are 2 unsequenced modifications of i. However, if i is some int-like class, ++i + ++i instead has indeterminately ...
3
votes
2answers
81 views

Sequence point after a return statement?

In my answer to a question here I explained what happened when postfix ++ was used on a global variable on the same line as a return statement. The informative appendix C of C11 states that there is ...
11
votes
2answers
131 views

Is there a sequence point between a function call returning an object and a method call on that object?

If I write f(x)->g(args, ...) can I rely on a sequence point after f(x) before the evaluation of args, ...? I can see arguments both ways: §1.9.17 "When calling a function (whether or not the ...
2
votes
6answers
88 views

Assignment and sequence points: how is this ambiguous?

Consider the C code a = a = a. There's no sequence point for assignment, so this code produces a warning when compiling about an undefined operation on a. What are the possible values that a could ...
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"; ...
5
votes
4answers
125 views

A compiler may not move accesses to volatile variables across sequence points; what does it mean?

Declaring a variable as 'volatile' means to read/write directly from the memory location, not from the register variable. I have a knowledge about 'sequence point'. But i dont understand the ...
2
votes
0answers
107 views

Destruction ordering of objects after optimization

I am trying to time a few function calls in my software to compare different implementations. To get the desired timings i'm reading the PCCNTR register of my ARM A9 processor at the beginning and ...
4
votes
6answers
139 views

Sequence Points vs Operator Precedence [duplicate]

Possible Duplicate: Unsequenced value computations (a.k.a sequence points) Undefined Behavior and Sequence Points Operator Precedence vs Order of Evaluation I'm still trying to wrap my ...
1
vote
2answers
91 views

Is the behaviour of following expression well defined?

Cosider the sequence points in the following expression i = (++i,i++,i); If I am correct the steps of execution will be as follows: 1) ++i, i++ 2) step1,i 3) i = step2 For evaluation ...
3
votes
2answers
184 views

Post-increment, function calls, sequence point concept in GCC

There is a code fragment that GCC produce the result I didn't expect: (I am using gcc version 4.6.1 Ubuntu/Linaro 4.6.1-9ubuntu3 for target i686-linux-gnu) [test.c] #include <stdio.h> int ...
4
votes
1answer
62 views

How to get VS or Xcode warning with something like “x = x++”?

In the spirit of undefined behavior associated with sequence points such as “x = ++x” is it really undefined?, how does one get the compiler to complain about such code? Specifically, I am using ...
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 ...
6
votes
3answers
353 views

Where do sequence points come from?

I know that writing something like ++a = a++; Is not only unreadable but also violates the c/c++ sequence points. Where do these limitations come from? How can one see those 'problems' before ...
0
votes
2answers
204 views

Why does increment operation like “a[i] = i++;” result in undefined behavior? [duplicate]

Possible Duplicate: Undefined Behavior and Sequence Points #include <iostream> using namespace std; int main() { int x[3] = {}; int i=0; x[i] = i++; cout << x[0] << " " ...
3
votes
2answers
117 views

Sequence points when calling functions in C and undefined/unspecified behaviour

I'm trying to pin down my understanding of sequence points in C -- just wanted to check something. At present, I believe that (1) is undefined whereas (2) is merely unspecified, on the basis that in ...
3
votes
1answer
291 views

Same code, different output in C# and C++

C#: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ...
5
votes
1answer
136 views

Sequencing among a variadic expansion

For this non-variadic example: int Func1(); double Func2(); void MyFunc( int, double ); int main() { MyFunc( Func1(), Func2() ); //... } it's not specified whether Func1() or ...
2
votes
1answer
94 views

What's so illegal about this operation

Namely code similar to this, making the printout undefined. int a=41; a++ & printf("%d\n", a); Hope that's not too dumb of a question, as I don't know what exactly this operation is called. ...
2
votes
1answer
97 views

Sequence Point warning in initializer list

I have a Parent class that takes two references that may or may not actually be references to the same thing. In this case when they are the same, I get a sequence point warning in the initializer ...
8
votes
2answers
181 views

Are there any situations where code would have a sequence point in c++11 but not c++03?

Now that the new c++11 standard has made changes in how sequence points are described I'm trying to find out exactly what has been changed between c++03 and c++11. In particular, are there any ...
15
votes
2answers
507 views

Bit-fields and sequence points

For an implementation that packs f0 and f1 into the same byte, is the program below defined? struct S0 { unsigned f0:4; signed f1:4; } l_62; int main (void) { (l_62.f0 = 0) + ...
2
votes
2answers
145 views

Argument evaluation order between chained static function calls

I am curious why there is a difference in the argument evaluation order between chained static functions and member functions. From the answers at this question I can see it is unspecified what the ...
0
votes
3answers
98 views

Associativity and Sequence Points in C

Since the associativity of '?' is from right to left,any 2 consecutive '?' operators must be treated as such,Right? Now, int x=-1; int y=x?x++?x:-1:1; I expect this to be executed as: int y = x ? ...
5
votes
3answers
244 views

Why does gcc not give a warning at undefined behaviour in code inside?

I just read this SO C++ FAQ about undefined behavior and sequence points and experimented a bit. In the following code gcc-4.5.2 gives me a warning only in the line mentioned in the code comment, ...
7
votes
3answers
232 views

Is there a sequence point between structure member initializations?

Is there a sequence point between structure member initialization expressions? For example, is it well defined that the code bellow will always print "a, b"? #include <stdio.h> typedef struct ...
2
votes
2answers
176 views

Is there a guaranteed happens-before relationship for argument evaluation to chained methods?

I want to trim a string in C++ with this code: std::string str(" Trim test "); str.erase( /* 1 */ 0, /* 2 */ ...
13
votes
7answers
2k views

How do Prefix and Postfix operations work?

Can someone tell me how prefix / postfix operators really work? I've been looking online a lot but haven't found anything. From what I can tell prefix first increments, then does the operation and ...
0
votes
1answer
331 views

Passing sequence of 2D points as arguments to cvFitLine

I have the following code fragment: int count = (int)sizes.size(); CvSeq* seq = cvCreateSeq(0, sizeof(CvSeq), sizeof(CvPoint2D32f), memStorage); float line[4]; for (int i=0;i<count;i++) { ...
13
votes
6answers
378 views

Is there a sequence point between these assignments?

Is there a sequence point between the two assignments in the following code: f(f(x=1,1),x=2);
8
votes
2answers
190 views

Is this code well defined?

I suspect the following chaining of functions would result in unspecified sequence according to the C++ standards (assume C++0x). Just want a confirmation and if anyone could provide an explanation, ...
11
votes
5answers
170 views

Does placement-new introduce a sequence point?

Consider the following line of code: new (p++) T(); If the constructor T() throws an exception, is p guaranteed to have already been incremented?
17
votes
2answers
377 views

Is the comma in a variable list a sequence point?

In the following type of code is there a sequence point between each variable construction, or is the result undefined? int a = 0; int b = a++, c = a++; I wasn't able to find in the standard a ...
9
votes
2answers
789 views

Segfault with strcmp

I am using strcmp in following ways Passing char[] array names Passing pointers to string literals but, the second result in seg fault. even though i have confirmed that pointers point to correct ...
20
votes
2answers
297 views

is i=f(); defined when f modifies i?

Related question: Any good reason why assignment operator isn't a sequence point? From the comp.lang.c FAQ I would infer that the program below is undefined. Strangely, it only mentions the call ...
10
votes
3answers
410 views

Sequence Points and Method Chaining

The following expression is often used to demonstrate undefined unspecified behaviour: f() + g() If f() and g() both have side effects on some shared object then the behaviour is undefined ...
0
votes
2answers
522 views

Post Increment with respect to Sequence Points

When does the post increment operator affect the increment? I have come across two opinions: 1) From http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_015.htm: POST means do the operation ...
21
votes
6answers
1k views

Is this code well-defined?

This code is taken from a discussion going on here. someInstance.Fun(++k).Gun(10).Sun(k).Tun(); Is this code well-defined? Is ++k in Fun() evaluated before k in Sun()? What if k is user-defined ...
0
votes
1answer
157 views

Sequence points in a language with left to right evaluation order?

When evaluation order is specified as "left to right" and language is a (pseudo) C-like, which are the sequence points in the following examples? int x = 1; int z = x-- + x; // z = 1 + 0 or z = 1 + ...
37
votes
5answers
3k views

Undefined Behavior and Sequence Points Reloaded

Consider this topic a sequel of the following topic: Previous Installment Undefined Behavior and Sequence Points Let's revisit this funny and convoluted expression (the italicized phrases ...
9
votes
4answers
452 views

Can a C/C++ compiler legally cache a variable in a register across a pthread library call?

Suppose that we have the following bit of code: #include <pthread.h> #include <stdio.h> #include <stdlib.h> void guarantee(bool cond, const char *msg) { if (!cond) { ...
3
votes
2answers
163 views

Sequence points in C++ and exceptions

Can compiler reorder variable setting and throw() op in C++? Or, does standard C++ 14882-1998 allows or prohibit compiler of this transform? For code: bool funct() { bool succeeded = false; ...
12
votes
3answers
822 views

Any good reason why assignment operator isn't a sequence point?

Is there any good reason for operator = not being a sequence point? Both in C and C++. I have trouble thinking about an counter-example.
3
votes
1answer
281 views

sequence points in java

Is there a guaranteed sequence of execution of the following java code: int i = getA() + getB(); Is getA() always executed before getB(), as any average person would expect?

1 2