C99
Template:Short description Template:About Template:Use dmy dates Template:Missing information Template:C language revisions
C99 (C9X during its development, formally ISO/IEC 9899:1999) is a past version of the C programming language open standard.<ref>Template:Cite web</ref> It extends the previous version (C90) with new features for the language and the standard library, and helps implementations make better use of available computer hardware, such as IEEE 754-1985 floating-point arithmetic, and compiler technology.<ref name="grouper.ieee.org">Template:Cite web</ref> The C11 version of the C programming language standard, published in 2011, updates C99.
History
After ANSI produced the official standard for the C programming language in 1989, which became an international standard in 1990, the C language specification remained relatively static for some time, while C++ continued to evolve, largely during its own standardization effort. Normative Amendment 1 created a new standard for C in 1995, but only to correct some details of the 1989 standard and to add more extensive support for international character sets. The standard underwent further revision in the late 1990s, leading to the publication of ISO/IEC 9899:1999 in 1999, which was adopted as an ANSI standard in May 2000. The language defined by that version of the standard is commonly referred to as "C99". The international C standard is maintained by the working group ISO/IEC JTC1/SC22/WG14.
Design
C99 is, for the most part, backward compatible with C89, but it is stricter in some ways.<ref>Template:Cite web</ref>
In particular, a declaration that lacks a type specifier no longer has int implicitly assumed. The C standards committee decided that it was of more value for compilers to diagnose inadvertent omission of the type specifier than to silently process legacy code that relied on implicit int. In practice, compilers are likely to display a warning, then assume int and continue translating the program.
C99 introduced several new features, many of which had already been implemented as extensions in several compilers:<ref>Template:Cite web</ref>
- inline functions
- intermingled declarations and code: variable declaration is no longer restricted to file scope or the start of a compound statement (block)
- several new data types, including
long long int, optional extended integer types, an explicit Boolean data type (_Bool), and complex types (_Complextype specifier) to represent complex numbers - variable-length arrays (although subsequently relegated in C11 to a conditional feature that implementations are not required to support)
- flexible array members
- support for one-line comments beginning with
//, as in BCPL, C++ and Java - new library functions, such as
snprintf - new headers, such as
<stdbool.h>,<complex.h>,<tgmath.h>, and<inttypes.h> - type-generic math (macro) functions, in
<tgmath.h>, which select a math library function based uponfloat,double, orlong doublearguments, etc. - optional support for IEEE 754-1985 floating point
- designated initializers. For example, initializing a structure by field names:
struct Point p = { .x = 1, .y = 2 };<ref>Template:Cite web</ref> - compound literals. For instance, it is possible to construct structures in function calls:
function((struct x) {1, 2})<ref>Template:Cite web</ref> - support for variadic macros (macros with a variable number of arguments)
restrictqualification allows more aggressive code optimization, removing compile-time array access advantages previously held by FORTRAN over ANSI C<ref>Template:Cite web</ref>- universal character names, which allows user variables to contain other characters than the standard character set: four-digit Template:Code or eight-digit hexadecimal sequences Template:Code
- keyword
staticin array indices in parameter declarations<ref>Template:Cite book</ref>
Parts of the C99 standard are included in the current version of the C++ standard, including integer types, headers, and library functions. Variable-length arrays are not among these included parts because C++'s Standard Template Library already includes similar functionality.
IEEE 754 floating-point support
A major feature of C99 is its numerics support, and in particular its support for access to the features of IEEE 754-1985 (also known as IEC 60559) floating-point hardware present in the vast majority of modern processors (defined in "Annex F IEC 60559 floating-point arithmetic"). Platforms without IEEE 754 hardware can also implement it in software.<ref name="grouper.ieee.org"/>
On platforms with IEEE 754 floating point: Template:Unordered list
FLT_EVAL_METHOD == 2 tends to limit the risk of rounding errors affecting numerically unstable expressions (see IEEE 754 design rationale) and is the designed default method for x87 hardware, but yields unintuitive behavior for the unwary user;<ref>Template:Cite web</ref> FLT_EVAL_METHOD == 1 was the default evaluation method originally used in K&R C, which promoted all floats to double in expressions; and FLT_EVAL_METHOD == 0 is also commonly used and specifies a strict "evaluate to type" of the operands. (For gcc, FLT_EVAL_METHOD == 2 is the default on 32 bit x86, and FLT_EVAL_METHOD == 0 is the default on 64 bit x86-64, but FLT_EVAL_METHOD == 2 can be specified on x86-64 with option -mfpmath=387.) Before C99, compilers could round intermediate results inconsistently, especially when using x87 floating-point hardware, leading to compiler-specific behaviour;<ref name=stackinterview>Template:Cite web</ref> such inconsistencies are not permitted in compilers conforming to C99 (annex F).
Example
The following annotated example C99 code for computing a continued fraction function demonstrates the main features:
<syntaxhighlight lang=C line highlight="9,11,13,15,21,23,25,36,42">
- include <assert.h>
- include <fenv.h>
- include <float.h>
- include <math.h>
- include <stdio.h>
- include <stdbool.h>
- include <tgmath.h>
double compute_fn(double z) { // [1]
#pragma STDC FENV_ACCESS ON // [2]
assert(FLT_EVAL_METHOD == 2); // [3]
if (isnan(z)) { // [4]
puts("z is not a number");
}
if (isinf(z)) {
puts("z is infinite");
}
long double r = 7.0 - 3.0 / (z - 2.0 - 1.0 / (z - 7.0 + 10.0 / (z - 2.0 - 2.0 / (z - 3.0)))); // [5, 6]
feclearexcept(FE_DIVBYZERO); // [7]
bool raised = fetestexcept(FE_OVERFLOW); // [8]
if (raised) {
puts("Unanticipated overflow.");
}
return r;
}
int main(void) {
#ifndef __STDC_IEC_559__
puts("Warning: __STDC_IEC_559__ not defined. IEEE 754 floating point not fully supported."); // [9]
#endif
#pragma STDC FENV_ACCESS ON
#ifdef TEST_NUMERIC_STABILITY_UP fesetround(FE_UPWARD); // [10] #elif TEST_NUMERIC_STABILITY_DOWN fesetround(FE_DOWNWARD); #endif
printf("%.7g\n", compute_fn(3.0));
printf("%.7g\n", compute_fn(NAN));
return 0;
} </syntaxhighlight>
Footnotes:
- Compile with: Template:Code
- As the IEEE 754 status flags are manipulated in this function, this #pragma is needed to avoid the compiler incorrectly rearranging such tests when optimising. (Pragmas are usually implementation-defined, but those prefixed with
STDCare defined in the C standard.) - C99 defines a limited number of expression evaluation methods: the current compilation mode can be checked to ensure it meets the assumptions the code was written under.
- The special values such as NaN and positive or negative infinity can be tested and set.
long doubleis defined as IEEE 754 double extended or quad precision if available. Using higher precision than required for intermediate computations can minimize round-off error<ref name=Baleful>Template:Cite web</ref> (the typedefdouble_tcan be used for code that is portable under allFLT_EVAL_METHODs).- The main function to be evaluated. Although it appears that some arguments to this continued fraction, e.g., 3.0, would lead to a divide-by-zero error, in fact the function is well-defined at 3.0 and division by 0 will simply return a +infinity that will then correctly lead to a finite result: IEEE 754 is defined not to trap on such exceptions by default and is designed so that they can very often be ignored, as in this case. (If
FLT_EVAL_METHODis defined as 2 then all internal computations including constants will be performed in long double precision; ifFLT_EVAL_METHODis defined as 0 then additional care is need to ensure this, including possibly additional casts and explicit specification of constants as long double.) - As the raised divide-by-zero flag is not an error in this case, it can simply be dismissed to clear the flag for use by later code.
- In some cases, other exceptions may be regarded as an error, such as overflow (although it can in fact be shown that this cannot occur in this case).
__STDC_IEC_559__is to be defined only if "Annex F IEC 60559 floating-point arithmetic" is fully implemented by the compiler and the C library (users should be aware that this macro is sometimes defined while it should not be).- The default rounding mode is round to nearest (with the even rounding rule in the halfway cases) for IEEE 754, but explicitly setting the rounding mode toward + and - infinity (by defining
TEST_NUMERIC_STABILITY_UPetc. in this example, when debugging) can be used to diagnose numerical instability.<ref>Template:Cite web</ref> This method can be used even ifcompute_fn()is part of a separately compiled binary library. But depending on the function, numerical instabilities cannot always be detected.
Version detection
A standard macro __STDC_VERSION__ is defined with value 199901L to indicate that C99 support is available. As with the __STDC__ macro for C90, __STDC_VERSION__ can be used to write code that will compile differently for C90 and C99 compilers, as in this example that ensures that inline is available in either case (by replacing it with static in C90 to avoid linker errors).
<syntaxhighlight lang=C>
- if __STDC_VERSION__ >= 199901L
/* "inline" is a keyword */
- else
- define inline static
- endif
</syntaxhighlight>
Implementations
Most C compilers provide support for at least some of the features introduced in C99.
Historically, Microsoft has been slow to implement new C features in their Visual C++ tools, instead focusing mainly on supporting developments in the C++ standards.<ref>Template:Cite web</ref> However, with the introduction of Visual C++ 2013 Microsoft implemented a limited subset of C99, which was expanded in Visual C++ 2015.<ref name="vs2015_new" />
| Compiler | Level of support | C99 compatibility details |
|---|---|---|
| Acorn C/C++ | Template:Partial | The official documentation states that "most" compiler features are supported, along with "some" of the library functions. |
| AMD x86 Open64 Compiler Suite | Template:Okay | Has C99 support equal to that of GCC.<ref>Template:Cite web</ref> |
| cc65 | Template:Partial | Full C89 and C99 support is not implemented, partly due to platform limitations (MOS Technology 6502). There is no support planned for some C99 types like _Complex and 64-bit integers (long long).<ref>Template:Cite web</ref> |
| Ch | Template:Partial | Supports major C99 features.<ref>Template:Cite web</ref> |
| Clang | Template:Okay | Supports all features except C99 floating-point pragmas.<ref>Template:Cite web</ref> |
| CompCert | Template:Okay | A certified compiler, formally proved correct. Supports all features except C99 complex numbers and VLA, and minor restrictions on switch statements (no Duff's device).<ref>Template:Cite web</ref> |
| cparser | Template:Yes | Supports C99 features.<ref>Template:Cite web</ref> |
| C++ Builder | Template:Okay Template:Citation needed |
|
| Digital Mars C/C++ Compiler | Template:Partial | Lacks support for some features, such as <tgmath.h> and _Pragma.<ref>Template:Cite web</ref> |
| GCC | Template:Okay | Template:As of, standard pragmas and IEEE 754/IEC 60559 floating-point support are missing in mainline GCC. Additionally, some features (such as extended integer types and new library functions) must be provided by the C standard library and are out of scope for GCC.<ref>Template:Cite web</ref> GCC's 4.6 and 4.7 releases also provide the same level of compliance.<ref>Template:Cite web</ref><ref>Template:Cite web</ref> Partial IEEE 754 support, even when the hardware is compliant: some compiler options may be needed to avoid incorrect optimizations (e.g., -std=c99 and -fsignaling-nans), but full support of directed rounding modes is missing even when -frounding-math is used.<ref>Template:Cite web</ref>
|
| Green Hills Software | Template:Yes | |
| IBM C for AIX, V6 <ref>Template:Cite web</ref> and XL C/C++ V11.1 for AIX <ref>Template:Cite web</ref> | Template:Yes | |
| IBM Rational logiscope | Template:Yes | Until Logiscope 6.3, only basic constructs of C99 were supported. C99 is officially supported in Logiscope 6.4 and later versions.<ref>Template:Cite web</ref> |
| The Portland Group PGI C/C++ | Template:Yes | |
| IAR Systems Embedded Workbench |
Template:Partial | Does not support UCN (universal character names). Compiler for embedded targets, such as ARM, Coldfire, MSP430, AVR, AVR32, 8051, ... No x86 targets. |
| Intel C++ compiler | Template:Okay Template:Citation needed |
|
| Microsoft Visual C++ | Template:Partial<ref name="vs2015_new">Template:Cite web</ref> | Visual C++ 2012 and earlier did not support C99.<ref>Template:Cite web</ref><ref>Template:Cite web</ref><ref>Template:Cite web</ref> Visual C++ 2013 implements a limited subset of C99 required to compile popular open-source projects.<ref>Template:Cite web</ref><ref>Template:Cite web</ref> Visual C++ 2015 implements the C99 standard library, with the exception of any library features that depend on compiler features not yet supported by the compiler (for example, <tgmath.h> is not implemented).<ref name="vs2015_new" /> Visual C++ 2019 (16.6) adds opt-in support for a C99 conformant preprocessor.<ref>Template:Cite web</ref> |
| Open Watcom | Template:Partial | Implements the most commonly used parts of the standard. However, they are enabled only through the undocumented command-line switch "-za99". Three C99 features have been bundled as C90 extensions since pre-v1.0: C++ style comments (//), flexible array members, trailing comma allowed in enum declaration.<ref>Template:Cite web</ref> |
| Pelles C | Template:Yes | Supports all C99 features.<ref>Template:Cite web</ref> |
| Portable C compiler | Template:Partial | Working towards becoming C99-compliant.Template:Citation needed |
| Sun Studio | Template:Yes<ref>Template:Cite web</ref> | |
| The Amsterdam Compiler Kit | Template:NoTemplate:Citation needed | A C99 frontend is currently under investigation.Template:Citation needed |
| Tiny C Compiler | Template:Partial | Does not support complex numbers.<ref>Template:Cite web</ref><ref>According to the project's TODO list complex types are the only missing C99 feature. Variable Length Arrays have been added in TCC 0.9.26 [1]</ref> Variable Length Arrays are supported but not as arguments in functionsTemplate:Citation needed. The developers state that "TCC is heading toward full ISOC99 compliance".<ref>Template:Cite web</ref> |
| vbcc | Template:Partial |
Future work
Since ratification of the 1999 C standard, the standards working group prepared technical reports specifying improved support for embedded processing, additional character data types (Unicode support), and library functions with improved bounds checking. Work continues on technical reports addressing decimal floating point, additional mathematical special functions, and additional dynamic memory allocation functions. The C and C++ standards committees have been collaborating on specifications for threaded programming.
The next revision of the C standard, C11, was ratified in 2011.<ref>Template:Cite web</ref> The C standards committee adopted guidelines that limited the adoption of new features that have not been tested by existing implementations. Much effort went into developing a memory model, in order to clarify sequence points and to support threaded programming.
See also
Template:C++ language revisions
- Compatibility of C and C++
- Outline of the C programming language
- C++ Technical Report 1
- IEEE 754, for further discussion of usage of IEEE 754
References
Further reading
- N1256 (final draft of C99 standard plus TC1, TC2, TC3); WG14; 2007. (HTML and ASCII versions)
- ISO/IEC 9899:1999 (official C99 standard); ISO; 1999.
- Rationale for C99; WG14; 2003.
- Template:Cite journal
- Template:Cite web
External links
Template:S-start Template:S-bef Template:S-ttl Template:S-aft Template:End Template:CProLang Template:ISO standards