The unpredictable outcome of compiling or executing a program which breaks the rules of the language
10
votes
2answers
256 views
Multiple compound assignments in a single statement: is it Undefined Behavior or not?
I can't find a definitive answer for this: does the following code have undefined behavior?
int x = 2;
x+=x+=x+=2.5;
2
votes
3answers
45 views
Consider the program output
Consider the program
#include<stdio.h>
int main()
{
int x = 33;
float y = 5;
printf("%d %d",y,x);
return 0;
}
Output:
0 1075052544
I can understand the value of y coming 0 as UB ...
7
votes
5answers
134 views
Assignment and pointers, undefined behavior?
int func(int **a)
{
*a = NULL;
return 1234;
}
int main()
{
int x = 0, *ptr = &x;
*ptr = func(&ptr); // <-???
printf("%d\n", x); // print '1234'
...
43
votes
3answers
963 views
When is it valid to access a pointer to a “dead” object?
First, to clarify, I am not talking about dereferencing invalid pointers!
Consider the following two examples.
Example 1
typedef struct { int *p; } T;
T a = { malloc(sizeof(int) };
free(a.p); // ...
0
votes
3answers
90 views
C++: Undefined behavior caused by…?
int size = 0;
int sorted[] = {};
int symbols[] = {8, 9, 13, 16, 16, 16, 17, 17, 17, 18, 18, 18, 20, 20, 27,
32, 33, 34, 35, 36, 37, 38, 39, 40, 44, 45, 46, 48, 48, 48, 49, 49, 49, 49,
50, ...
0
votes
3answers
75 views
Uninitialized floating point variables, repoducing indeterminate behavior
I had to debug some code that was exhibiting transient and sporadic behavior, which ultimately could be attributed to an uninitialized float in a line of initializations, i.e.:
float a = number, b, c ...
4
votes
3answers
74 views
Lua - Two local variables with the same name
I have been learning Lua and I was wondering if it is allowed to reference two local variables of the same name.
For example, in the following code segment, is the syntax legal (without undefined ...
2
votes
0answers
92 views
How can I find out what's changing the return address of a function in c++
I have a program that behaves weirdly and probably has undefined behaviour. Sometimes, the return address of a function seems to be changed, and I don't know what's causing it.
The return address is ...
0
votes
0answers
24 views
LESSCSS Fails to compile imported files
I have one main CSS file, style.less, which ties a lot of sub-files together by the @import function. I have one file per page/template. I also include a few font libraries and mixins.
Everything ...
-1
votes
4answers
86 views
Can anyone explain the output
If I try to print a float as an int, this code:
main () {
float a = 6.8f;
printf("%d", a);
}
...
0
votes
2answers
39 views
How long does Timer.schedule schedule for when delay is 0?
In Timer.schedule(TimerTask task, long delay), it says it will throw if delay is negative, but doesn't say anything about if delay is zero. What will happen? I tried on openjdk and it ran instantly. ...
-4
votes
2answers
106 views
Why does Java's Collections library say that methods “may throw” exceptions instead of “will throw”?
In [java.util.Collections][1] in Java SE 6, it says:
The "destructive" algorithms contained in this class, that is, the
algorithms that modify the collection on which they operate, are
...
0
votes
1answer
96 views
Pointer address standards-compliant conversion
I need to find the most standards-compliant way to obtain the address of a pointer and store its bytes separately (for instance, to transmit them serially).
I have two versions below, the first one ...
2
votes
4answers
72 views
Is it safe to invoke std::map::erase with std::map::begin?
We (all) know, erasing an element, pointer by an iterator invalidates the iterator, for example:
std::map< .. > map_;
std::map< .. >::iterator iter;
// ..
map_.erase( iter ); // this will ...
0
votes
1answer
43 views
Explanation of the UB while changing data
I was trying to demonstrate to a work pal that you can change the value of a constant-qualified variable if really wants to (and knows how to) by using some trickery, during my demostration, I've ...
2
votes
2answers
54 views
Copying indeterminate pointers in C
C11 standard says the following (6.2.4p2):
The lifetime of an object is the portion of program execution during
which storage is guaranteed to be reserved for it. An object exists,
has a ...
0
votes
2answers
42 views
POSIX read(2), unexpected behavior
I have some issues using read(2) in a learning test.
The code is the following:
#include <stdio.h>
int main() {
size_t length;
read(0, &length, sizeof(length));
printf("input ...
-2
votes
5answers
103 views
is this struct undefined behaviour from source file
I have a struct from a source file s.cpp:
struct s{
unsigned long long a;
s(unsigned long long b){a=b;}
unsigned long long get(){return a;}
};
And in main file, compiled of course with g++ main.cpp ...
4
votes
3answers
117 views
Does this abuse of function declarations invoke undefined behavior?
Consider the following program:
int main()
{
int exit();
((void(*)())exit)(0);
}
As you can see, exit is declared with the wrong return type, but is never called with the incorrect function ...
0
votes
2answers
77 views
Is this an undefined behavior?
Is this the below C code an UB? can I access garbage value? if so,can static function make it working fine?
const char *foo_name(int x){
switch(x) {
case FOO: return "foo";
case ...
9
votes
5answers
314 views
Is while(1); undefined behavior in C?
In C++11 is it Undefined Behavior, but is it the case in C that while(1); is Undefined Behavior?
0
votes
1answer
70 views
Does the signature of the function casted from GetProcAddress have to match exactly?
The question pretty much boils down to "Can I safely cast a function pointer to one with parameters convertible to those types?", but that sounds extremely suspicious without a practical example.
I ...
2
votes
1answer
28 views
JavaScript bitwise undefined pitfalls?
What is the logic of bitwise operators on undefined???
var x;
console.log(x); // undefined
console.log(x^7); // 7
console.log(7^x); // 7
console.log(x|7); // 7
console.log(7|x); // 7
...
4
votes
2answers
139 views
Is there valid “use cases” for Undefined Behaviour?
I have found a piece of code which has UB, and was told to leave it in the code, with a comment that states it is UB. Using MSVC2012 only.
The code itself has a raw array of Foo objects, then casts ...
6
votes
1answer
121 views
Is it ok to do printing/logging in global object constructor or it's an undefined behavior?
#include<iostream>
struct A {
A () {
std::cout << "A::A()\n";
}
};
A my_a; // works fine and prints the above line
int main () {}
According to C++ standard, order of global ...
9
votes
3answers
235 views
Is signed integer overflow still UB in C++?
As we know, signed integer overflow is undefined behavior. But there is something interesting in C++11 cstdint documentation:
signed integer type with width of exactly 8, 16, 32 and 64 bits ...
0
votes
2answers
86 views
Are nullptr references undefined behaviour in C++? [duplicate]
The following code fools around with nullptr pointer and reference:
#include <cstdio>
void printRefAddr(int &ref) {
printf("printAddr %p\n", &ref);
}
int main() {
int *ip ...
2
votes
5answers
116 views
Why is the behaviour of this code undefined in C?
I've been given this code and I'm not quite sure why its behaviour is undefined. My guess is that it has something to do with the memory locations of the two strings and the location(s)' comparison in ...
91
votes
8answers
4k views
+200
How did I get a value larger than 8 bits in size from an 8-bit integer?
I tracked down an extremely nasty bug hiding behind this little gem. I am aware that per the C++ spec, signed overflows are undefined behavior. But c is not just getting an unexpected value, it's ...
0
votes
1answer
39 views
Ruby/Shell: “puts”/“cat”ing an obscure file messes up terminal
I tried to rewrite some bash commands for Windows in Ruby, and trying to cat some system file totally messes up terminal: It randomly scrolls up (Windows) or down (Linux)
The file in question is this ...
1
vote
2answers
78 views
Use of any automatic variable before it has been initialized
I was reading the Wikipedia article about Undefined behaviour.
in C the use of any automatic variable before it has been initialized yields undefined behavior
However, this answer says, it is ok ...
0
votes
2answers
47 views
Erratic recursion in C
I ran this code on C and in Java and I got 65 and 55 respectively. I cannot fathom how C can get 65. Please help.
int recur(int count)
{
if(count==10)
return count;
else
...
-1
votes
1answer
59 views
Modulo arithmetic with signed integers undefined behavior in c?
Having read all answers and comments in Should you always use 'int' for numbers in C, even if they are non-negative? I'm still not sure what to do in the following situation.
Two remote ...
1
vote
2answers
121 views
Possible optimization for compilers or defined behaviour
If there is a function does not take any references or pointers as parameters, its return type is unused, and it makes no calls that observably leave the system (I/O calls, change system time, etc), ...
1
vote
1answer
46 views
Does accesing .text segment via `extern` variables cause undefined-behaviour?
This is file "1.c"
#include <stdio.h>
char foo;
int bar(){
}
int main(){
printf("%d",foo);
return 0;
}
//--------------------------
This is file ...
10
votes
4answers
380 views
`y=++y`, is this standard compliant? [which appears in a test by Microsoft] [duplicate]
I know this looks familiar but it is brought to me as a problem in a test by Microsoft to recruit interns. It seems to me that y=++y is not standard compliant, but I think maybe it would be better to ...
1
vote
1answer
32 views
Stack Overflow Behaviour in Native Languages
I'm curious to why most natives languages, including C,C++ and D, doesn't define stack-overflow behaviour. Is it because it would require instrumenting every stack variable allocation and function ...
2
votes
2answers
68 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;
...
10
votes
6answers
105 views
Using this.var during var's initialization [duplicate]
While researching another question, I was surprised to discover that the following Java code compiles without errors:
public class Clazz {
int var = this.var + 1;
}
In my JDK6, var gets ...
4
votes
1answer
136 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 ...
5
votes
1answer
201 views
Is performing arithmetic on a null pointer undefined behavior?
It looks to me like the following program computes an invalid pointer, since NULL is no good for anything but assignment and comparison for equality:
#include <stdlib.h>
#include ...
0
votes
1answer
377 views
Counter exit code 139 when running, but gdb make it through
My question sounds specific, but I doubt it still can be of a C++ debug issue.
I am using omnet++ which is to simulate wireless network. omnet++ itself is a c++ program.
I encountered a queer ...
7
votes
3answers
138 views
Is an (empty) infinite loop undefined behavior in C?
Is an infinite loop like for (;;); undefined behavior in C? (It is for C++, but I don't know about C.)
2
votes
1answer
181 views
How to resolve a weird changing value?
I am making a virtual machine for a small computer language. This virtual machine is developed in C using the GNU utility Flex. The project compilation is therefore with GNU GCC and then Flex.
Within ...
1
vote
2answers
92 views
Why does this code result in different behavior on different machines?
Apparently sometimes this code goes into an infinite loop, sometimes terminates or sometimes gets a segmentation fault depending on the machine. Why is the behavior inconsistent?
void loop() {
...
11
votes
2answers
230 views
Does `int a = 0, b = a` have undefined behavior? [duplicate]
The question title says it all: do declarations of the form int a = 0, b = a have undefined behavior?
0
votes
1answer
88 views
symfony2 custom console how do I include the container?
How do I fetch the container inside a custom console command script?
im hoping to be able to call
$this->container->get('kernel')->getCachedir();
or
$this->getDoctrine();
I can call ...
0
votes
0answers
19 views
Access Derived member with pointer to Base casted to Derive
I want to understand mechanism of casting and calling members, i want to know under the hood of this process, if somebody knows good article about it please post the link.
class Base
{
public:
...
0
votes
3answers
41 views
console.log() not returning logical test without using paranthesis ()
Today while trying logging and testing conditions i came across following scenario with Chome console. Can someone help me understand why exactly this behavior.
// 1. in this output "this is not ...
1
vote
2answers
62 views
Array through parameter by reference affecting another array
CardDetails is a Structure.
public static void ParceIntricaciesJabber(ref CardDetails[] WhichArray)
{
WhichArray[0].ID = 50;
WhichArray[0].Type = "None";
}
In calling:
...


