The undefined-behaviour tag has no wiki summary.
6
votes
4answers
557 views
Undefined behaviour in Java
I was reading this question on SO which discusses some common undefined behavior in C++, and I wondered: does Java also have undefined behaviour?
If that is the case, then what are some common causes ...
4
votes
2answers
241 views
Undefined behaviours in C
Recently I came across a number of undefined features in C, one of them being the following:
http://stackoverflow.com/questions/8698048/behaviour-of-non-const-int-pointer-on-a-const-int
Could ...
39
votes
12answers
2k views
Philosophy behind Undefined Behavior
C\C++ specifications leave out a large number of behaviors open for compilers to implement in their own way. There are a number of questions that always keep getting asked here about the same and we ...
