Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Pointer arithmetic using cast to "wrong" type

What happens when I define macros with the same name

PODs and inheritance in C++11. Does the address of the struct == address of the first member?

c++ c++11 language-lawyer

Returning a variable while using a post increment in C

Is support of Annex K in C11 required for a conforming implementation?

c language-lawyer c11 tr24731

What happens to char round-trip cast through a bool?

What is the dynamic type of the object allocated by malloc?

c++ malloc language-lawyer

Does this code in C fall into the Undefined Behavior category?

Why existing function arguments cannot be used to evaluate other default arguments?

Is a program, that doesn't use a default argument that would fail to bind to a reference parameter, legal?

c++ c++11 language-lawyer

How is nullptr rvalue

Why isn't argument deduction allowed in function return type?

Are two pointers comparing equal converted to an integer type compare equal?

c pointers language-lawyer

Where in C++14 Standard does it say that a non-constexpr function cannot be used in a definition of a constexpr function?

Surprise in template parameter substitution?

Why is SCHAR_MIN defined as -127 in C99?

c char language-lawyer c99

Why does shared_ptr have a move constructor

c++ c++11 stl language-lawyer

Is `X x = x = X();` legal C++?

c++ language-lawyer

The void type in C

How does changing a template argument from a type to a non-type make SFINAE work?