Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Are all non-member function pointers the same size in C++

Why C++ allows repeated + operators, like in x = 1 + + + + + + + + 2;

c++ language-lawyer grammar

Is a variable that is about to go out of scope an lvalue or an xvalue?

Is the compiler allowed to modify padding bytes

c language-lawyer padding

Why is the deletion of an incomplete type defined as "undefined behaviour"?

c++ language-lawyer

Is it safe to use operator [] for std::string

c++ language-lawyer

Why is implicit pointer of pointer to pointer conversion legal?

c pointers language-lawyer

Overwriting an object with an object of same type

Does the address of the array equal to that of its first element in C++?

Retry local static variable initialization after exception

c++ language-lawyer

C standard prohibition on warnings by default

c language-lawyer

constructor delegates to itself in g++ & clang++

Does joining a member thread accessing other members of its parent class in the parent's destructor result in undefined behavior?

Is running a binary generated from a code with "constraint violation" actually undefined behaviour?

c language-lawyer

Why doesn't this assignment throw a ReferenceError?

cin overwriting my initialized value when it reads wrong type? [duplicate]

c++ c++11 language-lawyer cin

Initializing a vector from iterators of a container of a different type

What does POSIX mean by "two's complement representation" in stdint.h?

c posix 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