Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is reading one-past-the-end pointer allowed in a constant expression when short-circuit disable its evaluation

C++ nrvo/copy elision with return statement in parentheses

Is shifting std::bitset<N> more than N positions undefined behavior?

Can anyone show an example where this precedence matters?

Where in the C++ standard does it state that the default constructor is not generated when the copy constructor is deleted?

Was `long` guaranteed to be as wide as `size_t`

c language-lawyer c89

Different behavior observed with constexpr auto/char-array variable

Integer overflow and order of operations

Is `free(a_comparable_pointer)` well defined or UB?

c language-lawyer

Invoking a static member function on non-existing object

c++ static language-lawyer

Taking the address of a function from within that function

c language-lawyer

Lifetime of a temporary captured by reference in a closure stored in a class

Is writing then reading different union members undefined according to the C standard? [duplicate]

c language-lawyer

Ambiguous member template lookup

What would happen if "i = i++" was not considered undefined behavior? [closed]

c language-lawyer

Surprising behavior of strtoull("-1", NULL, 0) and other negative values

c language-lawyer strtoull

Function interleaving in pre C++17

Why does template argument deduction fail with overloaded function?

Is modifying an object through a pointer to const undefined behavior?

Argument evaluation order between curly braces and parentheses