Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

109
votes
4answers
5k views

Undefined Behavior and Sequence Points

What are "Sequence Points"? What is the relation between Undefined Behaviour and Sequence Points? I often use funny and convoluted expressions like a[++i] = i;, to make myself feel better. Why ...
97
votes
8answers
18k views

What is the strict aliasing rule?

When asking about common undefined behavior in C, souls more enlightened than I referred to the strict aliasing rule. What are they talking about?
91
votes
14answers
7k views
44
votes
6answers
2k views

Is the “struct hack” technically undefined behavior?

What I am asking about is the well known "last member of a struct has variable length" trick. It goes something like this: struct T { int len; char s[1]; }; struct T *p = ...
38
votes
3answers
582 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 ...
32
votes
3answers
1k views

When does invoking a member function on a null instance result in undefined behavior?

This question arose in the comments of a now-deleted answer to this other question. Our question was asked in the comments by STingRaySC as: Where exactly do we invoke UB? Is it calling a member ...
29
votes
8answers
845 views

Why did this code still work?

Some old code that I just came across: MLIST * new_mlist_link() { MLIST *new_link = (MLIST * ) malloc(sizeof(MLIST)); new_link->next = NULL; new_link->mapi = NULL; ...
27
votes
5answers
1k 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 ...
27
votes
8answers
1k views

Is this undefined C behaviour?

Our class was asked this question by the C programming prof: You are given the code: int x=1; printf("%d",++x,x+1); What output will it always produce ? Most students said undefined behavior. Can ...
26
votes
17answers
943 views

How to explain undefined behavior to know-it-all newbies?

There'a a handful of situations that the C++ standard attributes as undefined behavior. For example if I allocate with new[], then try to free with delete (not delete[]) that's undefined behavior - ...
24
votes
8answers
603 views

A C++ implementation that detects undefined behavior?

A huge number of operations in C++ result in undefined behavior, where the spec is completely mute about what the program's behavior ought to be and allows for anything to happen. Because of this, ...
22
votes
4answers
298 views

Undefined behaviour in (X)HTML?

I know this question is pretty much asking for downvotes, but... Is there such a thing as undefined behaviour in (X)HTML? I have wondered this after playing around with the <button> tag, ...
19
votes
7answers
913 views

Why should I not try to use “this” value after “delete this”?

In this paragraph of C++ FAQ usage of delete this construct is discussed. 4 restrictions are listed. Restrictions 1 to 3 look quite reasonable. But why is restriction 4 there that I "must not examine ...
18
votes
3answers
441 views

Is it undefined behaviour to delete a null void* pointer?

I know that deleteing a null pointer is a no-op: In either alternative, if the value of the operand of delete is the null pointer the operation has no effect. (C++ Standard 5.3.5 [expr.delete] ...
17
votes
8answers
449 views

How undefined is undefined behavior?

I'm not sure I quite understand the extent to which undefined behavior can jeopardize a program. Let's say I have this code: #include <stdio.h> int main() { int v = 0; scanf("%d", ...
16
votes
2answers
395 views

Standard reference for int foo = foo

int foo = foo; compiles. Which part of the C++ standard allows this?
16
votes
3answers
357 views

An union with a const and a nonconst member?

This appears to be undefined behavior union A { int const x; float y; }; A a = { 0 }; a.y = 1; The spec says Creating a new object at the storage location that a const object with static, ...
16
votes
2answers
358 views

What's the difference in undefined behavior between C++03 and C++0x?

The new standard is nearly upon us, and it will have different undefined behavior from the old one. The new sequencing rules, for example, mean that some arithmetic operations that used to be ...
16
votes
5answers
555 views

Code with undefined behavior in C#

In C++ there are a lot of ways that you can write code that compiles, but yields undefined behavior (Wikipedia). Is there something similar in C#? Can we write code in C# that compiles, but has ...
15
votes
4answers
236 views

May I treat a 2D array as a contiguous 1D array?

Consider the following code: int a[25][80]; a[0][1234] = 56; int* p = &a[0][0]; p[1234] = 56; Does the second line invoke undefined behavior? How about the fourth line?
15
votes
11answers
638 views

Is undefined behavior worth it?

Many bad things happened and continue to happen (or not, who knows, anything can happen) due to undefined behavior. I understand that this was introduced to leave some wiggle-room for compilers to ...
14
votes
7answers
468 views

What most ingenious excuses of undefined behavior are there?

In about every other case where something is classified as undefined behavior there're lots of objections - instead of admitting that code contains an error that should be queued for fixing people try ...
14
votes
1answer
544 views

Is i += ++i undefined behavior in C++0x?

I'm very convinced with the explanation I've found that said that i = ++i is not undefined as far as C++0x is concerned, but I'm unable to judge whether the behavior of i += ++i is well-defined or ...
13
votes
3answers
588 views

Is `y = x = x + 1;` undefined behavior?

As the title says, is y = x = x + 1; undefined behavior in C?
13
votes
9answers
1k views

How could pairing new[] with delete possibly lead to memory leak only?

First of all, using delete for anything allocated with new[] is undefined behaviour according to C++ standard. In Visual C++ 7 such pairing can lead to one of the two consequences. If the type ...
13
votes
17answers
1k views

What's the worst example of undefined behaviour actually possible?

In questions about things not to do in C++ such as dereferencing a dangling pointer or calling delete twice for the same address I often see the statement that it's undefined behaviour and anything ...
12
votes
5answers
178 views

What are 'partially overlapping objects'?

I was just going through all the possible Undefined Behaviours in this thread, and one of them is The result of assigning to partially overlapping objects I wondered if anyone could give me a ...
12
votes
2answers
240 views

Is this infinite recursion UB?

In C++11, as an infinite loop with no side-effects, the following program is UB: int main() { while (true) {} } Is the following also UB? void foo() { foo(); } int main() { foo(); } ...
12
votes
3answers
287 views

sizeof(“”+0) != sizeof(char *) Bug or undefined behaviour?

The following C program: #include <stdio.h> int main(void) { printf("%u %u %u\n",sizeof "",sizeof(""+0),sizeof(char *)); return 0; } outputs 1 4 4 when compiled with GCC on Linux, ...
11
votes
1answer
358 views

Is `*--p` actually legal(well formed) in C++03

I'm wondering about this sample piece of code: int main() { char *p ; char arr[100] = "Hello"; if ((p=arr)[0] == 'H') // do stuffs } Is this code actually well formed in C++03? My ...
11
votes
5answers
195 views

How would a heap-allocated const object differ from non-const one?

In C++ it is possible to allocate a const object on heap: const Class* object = new const Class(); const_cast<Class*>( object )->NonConstMethod(); // UB so that attempt to write into an ...
11
votes
5answers
735 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. ...
10
votes
1answer
203 views

constexpr undefined behaviour

I've been experimenting with constexpr. On my test compiler (g++ 4.6) this fails to compile with an error about out of bounds access. Is a compiler required to spot this at compile time? #include ...
10
votes
1answer
190 views

Array pointer aliasing - undefined behavior?

Does the following code invoke undefined behavior (due to aliasing violation or otherwise)? int foo(int (*a)[10], int (*b)[5]) { (*a)[5]++; return (*b)[0]; } int x[10]; foo(&x, (int ...
10
votes
4answers
285 views

What does the C++ standard say about stack overflow?

I took a look at the draft C++0x standard, and as far as I can tell there is nothing about stack overflow in there. Searching for "stack overflow" yields no results, and searching for "stack" I've ...
10
votes
6answers
609 views

Can a heap-allocated object be const in C++?

In C++ a stack-allocated object can be declared const: const Class object; after that trying to call a non-const method on such object is undefined behaviour: const_cast<Class*>( &object ...
10
votes
7answers
1k 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?
9
votes
4answers
163 views

Passing `this` before base constructors are done: UB or just dangerous?

Consider this smallest example (I could think of): struct Bar; struct Foo { Bar* const b; Foo(Bar* b) : b(b) {} }; struct Bar { Foo* const f; Bar(Foo* f) : f(f) {} }; struct Baz : Bar { ...
9
votes
2answers
141 views

Why would this access violation occur with the /Og and /GL flags, with pass-by-reference?

When (and only when) I compile my program with the /Og and /GL flag using the Windows Server 2003 DDK C++ compiler (it's fine on WDK 7.1 as well as Visual Studio 2010!), I get an access violation when ...
9
votes
3answers
120 views

Dependencies in Initialization Lists

Is this behavior well-defined? class Foo { int A, B; public: Foo(int Bar): B(Bar), A(B + 123) { } }; int main() { Foo MyFoo(0); return 0; }
9
votes
3answers
178 views

Does this const initialization through const_cast have undefined behaviour?

According to my small tests this code works. But, does it have undefined behaviour? Modifying the const object through the use of const_cast resulted in run-time access violations in my previous ...
9
votes
16answers
714 views

Why exactly is calling the destructor for the second time undefined behavior in C++?

As mentioned in this answer simply calling the destructor for the second time is already undefined behavior 12.4/14(3.8). For example: class Class { public: ~Class() {} }; // somewhere in code: ...
8
votes
2answers
252 views

Is `new (this) MyClass();` undefined behaviour after directly calling the destructor?

In this question of mine, @DeadMG says that reinitializing a class through the this pointer is undefined behaviour. Is there any mentioning thereof in the standard somewhere? Example: #include ...
8
votes
4answers
223 views

Why is it undefined behavior to delete[] an array of derived objects via a base pointer?

I found the following snippet in the C++03 Standard under 5.3.5 [expr.delete] p3: In the first alternative (delete object), if the static type of the object to be deleted is different from its ...
8
votes
6answers
310 views

Mixing class and struct

I'm well aware of the difference between class and struct, however I'm struggling to authoritatively say if this is well defined: // declare foo (struct) struct foo; // define foo (class) class foo ...
8
votes
2answers
224 views

is `x— > 0 && array[x]` well defined behavior in c++?

can i use x on both sides of a boolean expression when I post-increment it on the left side? the line in question is: if(x-- > 0 && array[x]) { /* … use x … */ } is that defined ...
8
votes
5answers
380 views

May I take the address of the one-past-the-end element of an array? [closed]

Possible Duplicate: Take the address of a one-past-the-end array element via subscript: legal by the C++ Standard or not? int array[10]; int* a = array + 10; // well-defined int* b = ...
8
votes
3answers
354 views

What wording in the C++ standard allows static_cast<non-void-type*>(malloc(N)); to work?

As far as I understand the wording in 5.2.9 Static cast, the only time the result of a void*-to-object-pointer conversion is allowed is when the void* was a result of the inverse conversion in the ...
8
votes
8answers
551 views

Can I new[], then cast the pointer, then delete[] safely with built-in types in C++?

In my code I have effectively the following: wchar_t* buffer = new wchar_t[size]; // bonus irrelevant code here delete[] reinterpret_cast<char*>( buffer ); Types in question are all built-in ...
8
votes
2answers
223 views

Does the following code invoke UB?

Does the following code invoke UB ? int main(){ volatile int i = 0; volatile int* p = &i; int j = ++i * *p; }

1 2 3 4