Trying to understand --x vs x-- in C++...
Read MoreAre memory leaks "undefined behavior" class problem in C++?...
Read More`UnsafeCell` shared accross threads with no locking - this can cause UB right?...
Read MoreCan giving input too early cause glitches?...
Read MoreIs using declared and initialized but undefined variables undefined behavior?...
Read MoreThrowing C++ exception through C function call...
Read Morec/c++ -- Is writing to multi-dimesional array from 0 offset UB?...
Read MoreIs decrement of bool variable defined in С?...
Read MoreWhy does conversion from int to float not take place when we pass 'int' to a function expect...
Read MoreAware of issues during casting a struct of a sized pointer to its const-equivalent...
Read MoreIs it UB to compare pointers casted from integers?...
Read MoreDoes undefined behavior only concern an execution of program, or can it concern a program itself?...
Read MoreIn the C++ standard, paragraph 6.7.3.5, what does "depends on the side effects" mean?...
Read MoreCast a pointer to unsigned to signed in Rust, is it UB?...
Read MoreIs passing pointer to an array as pointer to pointer UB in C?...
Read MoreUsing += when inputting values into a 2D matrix in C++...
Read MoreIs converting from unsigned char to signed char and vice versa in C89 well defined?...
Read MoreCompiler dependency and well defined output...
Read MoreIs `&T as *const T as *mut T` sound for `static mut` items?...
Read MoreExample of undefined behaviour involving the use of const_cast...
Read MoreUnexpected memcpy on uncopyable & unmovable type when using co_await...
Read MoreWhy garbage value is not being returned in a recursive call to a function with undefined behavior?...
Read MoreConstructing an object over itself...
Read MoreCan undefined behavior erase the hard drive?...
Read MoreTokenizer in C is not showing any output...
Read MoreIs it allowed to cast away const on a const-defined object as long as it is not actually modified?...
Read MoreIs it safe and defined behavior to transmute between a T and an UnsafeCell<T>?...
Read MoreMust lvalues of type T identify objects of type T? If `p` has type `T *`, does `&*p` require `p`...
Read MoreWhat features does gcc-4.9 Undefined Behavior Sanitizer have?...
Read MoreIs there a safe version of C++ without undefined behaviour?...
Read More