How to determine w/o conversions that a given floating constant can be represented?...
Read MoreIs it standard C17 to wrap a parameter in a function declaration in parenthesis...
Read MorePlain C equivalent to Rust's unimplemented!() macros...
Read MoreUndefined behaviour in C in i=i++; but what about i=++i;?...
Read MoreDoes the C11/C17 Standard allow the compiler to clobber compound literals' memory?...
Read MoreDoes the definition int a = 0, b = a++, c = a++; have defined behavior in C?...
Read MoreIs there a standard way to guarantee that a certain (constant) expressions will be evaluated at comp...
Read MoreIs there such a thing as nullptr (or equivalent) in modern C standards?...
Read MoreIs this C program with two struct definitions, involving a flexible array member, defined?...
Read MoreWhat is the rationale for "semantics violation does not require diagnostics"?...
Read MoreIf "shall / shall not" requirement is violated, then does it matter in which section (e.g....
Read MoreF.3 Operations, 9 lists 5 FE_ macros followed by 4 IEEE 754 rounding-direction attributes ending up ...
Read MoreIf 'float'<= INT_MAX is true, then why (int)'float' may trigger undefined behavio...
Read MoreDoes "strictly conforming program" + no extensions mean "no diagnostics emitted"...
Read MoreCan extension cancel the existing standard requirements?...
Read MoreIs it possible to determine at compile time whether an implementation provides exact-width integer t...
Read MoreIf an implementation supports extra nonstandard features, then is such implementation conforming?...
Read MoreDo unsupported standard features affect conformance?...
Read MoreWhich C rules allow to use in function declarator an identifier, which was previously defined as a t...
Read MoreAre HAS_SUBNORM and __STDC_IEC_559__ dependent?...
Read MoreIf the next representable value after -0.0 is +0.0, then why nextafter(-0.0, INFINITY) does not retu...
Read MoreIs there a standard way to prohibit reading (via assignment) of a variable?...
Read MoreIs there any C compiler able to detect the violation of a "strictly conforming program"?...
Read Moreprintf("%a"): how the format and parameters of hexadecimal floating-point constant are sel...
Read MoreIs the term "format specifier" a synonym for term "conversion specifier"?...
Read MoreCan I treat an `enum` variable as an `int` in C17?...
Read MoreWhich sections of the C standard prove the relation between the integer type sizes?...
Read MoreIs there a standard way to check at compile time that file is being preprocessed only?...
Read More