Search code examples
What can be a subexpression?...


c++expressionsequence-points

Read More
Behaviour of arr[i] = i++ and i = i + 1 statements in C and C++...


c++cc++14undefined-behaviorsequence-points

Read More
Sequence Point Warning clarification...


csequence-points

Read More
Which compilation flags should I use to avoid run time errors...


c++ccompiler-warningscompiler-flagssequence-points

Read More
In C99, is f()+g() undefined or merely unspecified?...


cc99undefined-behaviorsequence-pointsunspecified-behavior

Read More
Confused about spline interpolation in 3D space...


c++3dcomputational-geometrysplinesequence-points

Read More
C Increment Operator Explanation...


cincrementpost-incrementpre-incrementsequence-points

Read More
Undefined behavior in c/c++: i++ + ++i vs ++i + i++...


c++undefined-behaviorside-effectssequence-points

Read More
Assignment and sequence points: how is this ambiguous?...


ccompiler-constructionsequence-points

Read More
How do Prefix (++x) and Postfix (x++) operations work?...


c#c++csequence-points

Read More
Why is a = (a+b) - (b=a) a bad choice for swapping two integers?...


c++cswapundefined-behaviorsequence-points

Read More
Calling function with side effects inside expression...


c++sequence-points

Read More
The result of (a=a+1)+(a=a+1)+(a=a+1) in c?...


cexpressionundefined-behaviorsequence-points

Read More
Why does the expression a = a + b - ( b = a ) give a sequence point warning in c++?...


c++operatorsoperator-precedencesequence-points

Read More
Does standard C++11 guarantee that temporary object passed to a function will have been destroyed af...


c++c++11standardslazy-sequencessequence-points

Read More
Does standard C++11 guarantee that temporary object passed to a function will have been created befo...


c++c++11standardslazy-sequencessequence-points

Read More
Well formed pairings in function call...


cc11sequence-points

Read More
Why printf ("%d%d%d", ++i, i, i++) is undefined behavior?...


cc99sequence-points

Read More
Sscanf uninitialized value when using prior argument in address...


cinitializationvalgrindformat-specifierssequence-points

Read More
Beginner's query about C program Function Call stack, sequence point(sequencing)...


cgccundefined-behaviorfunction-callssequence-points

Read More
What's wrong with this fix for double checked locking?...


multithreadinglockingsingletonsequence-pointsdouble-checked-locking

Read More
In a function call, why isn't comma a sequence point?...


cundefined-behaviorsequence-points

Read More
Sequence Points and Method Chaining reloaded...


c++c++11method-chainingsequence-points

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


csequence-points

Read More
Does this contain a sequence point?...


csequence-points

Read More
Differences in C and C++ with sequence points and UB...


c++clanguage-lawyerundefined-behaviorsequence-points

Read More
Undefined behavior, or: Does Swift have sequence points?...


swiftundefined-behaviorsequence-points

Read More
Is value of x*f(x) unspecified if f modifies x?...


c++cc++03operator-precedencesequence-points

Read More
Swapping the values of two variables without using third variable in C?...


cexpressionoperator-precedencesequence-points

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


side-effectssequence-points

Read More
BackNext