Search code examples
Is it standard C17 to wrap a parameter in a function declaration in parenthesis...


csyntaxlanguage-lawyerfunction-declarationc17

Read More
Plain C equivalent to Rust's unimplemented!() macros...


cgccllvm-gccc17c23

Read More
Undefined behaviour in C in i=i++; but what about i=++i;?...


clanguage-lawyersequencec99c17

Read More
Does the C11/C17 Standard allow the compiler to clobber compound literals' memory?...


cc11compound-literalsc17

Read More
Does the definition int a = 0, b = a++, c = a++; have defined behavior in C?...


clanguage-lawyerundefined-behaviorsequence-pointsc17

Read More
Is there a standard way to guarantee that a certain (constant) expressions will be evaluated at comp...


clanguage-lawyerc11constant-expressionc17

Read More
Is there such a thing as nullptr (or equivalent) in modern C standards?...


cc17

Read More
Is this C program with two struct definitions, involving a flexible array member, defined?...


clanguage-lawyerflexible-array-memberc17

Read More
How to correctly downcast in C?...


cc17

Read More
C function declaration linkage...


clanguage-lawyerlinkagec17

Read More
What is the rationale for "semantics violation does not require diagnostics"?...


clanguage-lawyerdiagnosticsstandards-compliancec17

Read More
If "shall / shall not" requirement is violated, then does it matter in which section (e.g....


clanguage-lawyerc11standards-compliancec17

Read More
F.3 Operations, 9 lists 5 FE_ macros followed by 4 IEEE 754 rounding-direction attributes ending up ...


clanguage-lawyerroundingstandardsc17

Read More
How to determine w/o conversions that a given floating constant can be represented?...


cfloating-pointconstantsc11c17

Read More
If 'float'<= INT_MAX is true, then why (int)'float' may trigger undefined behavio...


ctype-conversionundefined-behaviorc11c17

Read More
Does "strictly conforming program" + no extensions mean "no diagnostics emitted"...


clanguage-lawyerc11c17

Read More
Can extension cancel the existing standard requirements?...


clanguage-lawyerc11standards-compliancec17

Read More
Is it possible to determine at compile time whether an implementation provides exact-width integer t...


cc11stdintc17

Read More
If an implementation supports extra nonstandard features, then is such implementation conforming?...


clanguage-lawyerc11standards-compliancec17

Read More
Do unsupported standard features affect conformance?...


clanguage-lawyerc11standards-compliancec17

Read More
Which C rules allow to use in function declarator an identifier, which was previously defined as a t...


clanguage-lawyerc11function-declarationc17

Read More
Are HAS_SUBNORM and __STDC_IEC_559__ dependent?...


cfloating-pointc11standards-compliancec17

Read More
If the next representable value after -0.0 is +0.0, then why nextafter(-0.0, INFINITY) does not retu...


cfloating-pointc11math.hc17

Read More
Is there a standard way to prohibit reading (via assignment) of a variable?...


cc11c17

Read More
Is there any C compiler able to detect the violation of a "strictly conforming program"?...


cc11diagnosticsstandards-compliancec17

Read More
printf("%a"): how the format and parameters of hexadecimal floating-point constant are sel...


cfloating-pointprintfc11c17

Read More
Is the term "format specifier" a synonym for term "conversion specifier"?...


clanguage-lawyerc11c17

Read More
Can I treat an `enum` variable as an `int` in C17?...


ctypesenumsstandardsc17

Read More
Which sections of the C standard prove the relation between the integer type sizes?...


clanguage-lawyerc11c17

Read More
Is there a standard way to check at compile time that file is being preprocessed only?...


cc-preprocessorc11c17

Read More
BackNext