Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Data race guarded by if (false)... what does the standard say?

What is the type of a by-value lambda capture of a reference?

c++ language-lawyer

Is it OK to pass the address of an int for scanf("%x", ...)?

Declaration vs definition in C

c language-lawyer

Ambiguity accessing identifier in global and nested anonymous namespaces

State of the value to insert

Is "void* p = &p;" legal in C?

c language-lawyer

Is every null pointer constant a null pointer?

Templated constexpr function invocation with partially defined class changes subsequent results

Are conformant array parameters VLAs?

Two functions declarations share one definition, is this legal?

Which rule disprefers qualification conversions during reference binding?

c++ language-lawyer

Why is SFINAE for one of the std::basic_string constructors so restrictive?

How can a longer C++ implicit conversion chain succeed and a strict subchain of it fail in operator lookup?

Dependent name in local class

c++ language-lawyer

Combined with C++23 Deducing this and conversion operator with auto return type?

Is sum+++i undefined behavior in C? [duplicate]