The unspecified-behavior tag has no wiki summary.
40
votes
3answers
608 views
In C99, is f()+g() undefined or merely unspecified?
I used to think that in C99, even if the side-effects of functions f and g interfered, and although the expression f() + g() does not contain a sequence point, f and g would contain some, so the ...
11
votes
5answers
783 views
How to implement `memmove` in standard C without an intermediate copy?
From the man page on my system:
void *memmove(void *dst, const void *src, size_t len);
DESCRIPTION
The memmove() function copies len bytes from string src to string dst.
...
8
votes
3answers
326 views
Is it unspecified behavior to compare pointers to different arrays for equality?
The equality operators have the semantic restrictions of relational operators on pointers:
The == (equal to) and the != (not equal to) operators have the same semantic restrictions, conversions, ...
8
votes
4answers
153 views
Is there any tool for C++ which will check for common unspecified behavior?
Often one makes assumptions about a particular platform one is coding on, for example that signed integers use two's complement storage, or that (0xFFFFFFFF == -1), or things of that nature.
Does a ...
5
votes
4answers
89 views
Should an empty base class affect the layout of the derived class?
The C++ standard (quoting from draft n3242) says the following about subobjects [intro.object]:
Unless an object is a bit-field or a base class subobject of zero
size, the address of that object ...
5
votes
2answers
116 views
Does this code produce Undefined Behavior or it is merely Unspecified Behavior?
Lets say that we have two compilation units as follows:
// a.cpp
extern int value2;
int value1 = value2 + 10;
// b.cpp
extern int value1;
int value2 = value1 + 10;
When I tried it on VC2010, it ...
4
votes
5answers
479 views
Why does a main function without a return statement return value 12?
I have written a program that prints a table. I have not included the return syntax in the main function, but still whenever I type echo $? it displays 12.
My source code :
#include <stdio.h>
...
3
votes
4answers
176 views
Reason for Scala's Map.unzip returning (Iterable, Iterable)
the other day I was wondering why scala.collection.Map defines its unzip method as
def unzip [A1, A2] (implicit asPair: ((A, B)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
Since the method returns ...
1
vote
4answers
211 views
Why do different C++ compilers give different results for this code?
I'm writing some C++ codes for fun and practice, to learn more about language features. I want to know more about static variables and their behaviour in recursive functions. Trying this code in g++ ...