In C++, does initializing a global variable with itself have undefined behaviour?...
Read MoreUndefined behavior with pointer casts in C99 and MISRA C:2012...
Read MoreWhat is erroneous behavior? How is it different from undefined behavior?...
Read MoreInfinite loop vs infinite recursion. Are both undefined?...
Read MoreBenefit of inifinite loops without side effects in C++ being undefined behavior compared to C?...
Read MoreBoost ASIO "Bad address" error when passing unique_ptr to completion handler...
Read MoreIncorrect implementation of calloc() introduces division by zero and how to detect it via testing?...
Read MoreAre data races in assembly dangerous?...
Read MoreReading from pointers with "no provenance" using asm consdered safe?...
Read MoreIn practice, why would different compilers compute different values of int x = ++i + ++i;?...
Read MoreWhy is casting a union member pointer to a union pointer not UB as they can have different size?...
Read MoreIs it allowed to pass "this" of derived class to constructor of base class?...
Read MoreInitialize a structure pointer to NULL, then try to change its members...
Read MoreReturning a struct containing array in C...
Read MoreOptimizing away a "while(1);" in C++0x...
Read MoreIs 'while(1);' undefined behavior in C?...
Read MoreIs passing an absent assumed-shape array for an optional argument of another procedure allowed?...
Read MoreWhy need list argument in list splice func cpp...
Read MoreIs this use of va_copy undefined behaviour?...
Read MoreAre multidimensional array accesses sequenced?...
Read MorePutting 'noexcept' on possible UB...
Read MoreWhy is f(i = -1, i = -1) undefined behavior?...
Read MoreIssue with printing the correct size of a string in C...
Read MoreIs it legal to `reinterperet_cast` to the child of a non-virtual object?...
Read MoreConcept vs. Typename Parameter in Template Template...
Read MoreStoring Zero-Sized type instance into a null pointer...
Read MoreDoes assignment of the same value to a const variable cause UB in C++?...
Read MoreIs the behaviour of std::chrono::round on out-of-range values as intended?...
Read More