C data types


In the C programming language, data types constitute the semantics and characteristics of storage of data elements. They are expressed in the language syntax in form of declarations for memory locations or variables. Data types also determine the types of operations or methods of processing of data elements.
The C language provides basic arithmetic types, such as integer and real number types, and syntax to build array and compound types. Headers for the C standard library, to be used via include directives, contain definitions of support types, that have additional properties, such as providing storage with an exact size, independent of the language implementation on specific hardware platforms.

Primary types

Main types

The C language provides the four basic arithmetic type specifiers,, and , and the modifiers,,, and. The following table lists the permissible combinations in specifying a large set of storage size-specific declarations.
TypeExplanationSize Format specifierRangeSuffix for decimal constants
Boolean type, added in C23. 1 %d
Smallest addressable unit of the machine that can contain basic character set. It is an integer type. Actual type can be either signed or unsigned. It contains bits.≥8%c
Of the same size as, but guaranteed to be signed. Capable of containing at least the range.≥8%c
Of the same size as, but guaranteed to be unsigned. Contains at least the range.≥8%c
Short signed integer type. Capable of containing at least the range.≥16%hi or %hd
Short unsigned integer type. Contains at least the range.≥16%hu
Basic signed integer type. Capable of containing at least the range.≥16%i or %d
Basic unsigned integer type. Contains at least the range.≥16%u or
Long signed integer type. Capable of containing at least the range.≥32%li or %ld or
Long unsigned integer type. Capable of containing at least the range.≥32%luboth or and or
Long long signed integer type. Capable of containing at least the range. Specified since the C99 version of the standard.≥64%lli or %lld or
Long long unsigned integer type. Contains at least the range. Specified since the C99 version of the standard.≥64%lluboth or and or
Real floating-point type, usually referred to as a single-precision floating-point type. Actual properties unspecified ; however, on most systems, this is the IEEE 754 single-precision binary floating-point format. This format is required by the optional Annex F "IEC 60559 floating-point arithmetic".Converting from text: or
Real floating-point type, usually referred to as a double-precision floating-point type. Actual properties unspecified ; however, on most systems, this is the IEEE 754 double-precision binary floating-point format. This format is required by the optional Annex F "IEC 60559 floating-point arithmetic".none
Real floating-point type, usually mapped to an extended precision floating-point number format. Actual properties unspecified. It can be either x86 extended-precision floating-point format, the non-IEEE "double-double", IEEE 754 quadruple-precision floating-point format, or the same as double. See the article on long double for details.%Lf %LF
%Lg %LG
%Le %LE
%La %LA
or

The actual size of the integer types varies by implementation. The standard requires only size relations between the data types and minimum sizes for each data type:
The relation requirements are that the is not smaller than, which is not smaller than, which is not smaller than. As 's size is always the minimum supported data type, no other data types can be smaller.
The minimum size for is 8 bits, the minimum size for and is 16 bits, for it is 32 bits and must contain at least 64 bits.
The type should be the integer type that the target processor is most efficiently working with. This allows great flexibility: for example, all types can be 64-bit. However, several different integer width schemes are popular. Because the data model defines how different programs communicate, a uniform data model is used within a given operating system application interface.
In practice, is usually 8 bits in size and is usually 16 bits in size. This holds true for platforms as diverse as 1990s SunOS 4 Unix, Microsoft MS-DOS, modern Linux, and Microchip MCC18 for embedded 8-bit PIC microcontrollers. POSIX requires to be exactly 8 bits in size.
Various rules in the C standard make the basic type used for arrays suitable to store arbitrary non-bit-field objects: its lack of padding bits and trap representations, the definition of object representation, and the possibility of aliasing.
The actual size and behavior of floating-point types also vary by implementation. The only requirement is that is not smaller than, which is not smaller than. Usually, the 32-bit and 64-bit IEEE 754 binary floating-point formats are used for and respectively.
The C99 standard includes new real floating-point types and, defined in . They correspond to the types used for the intermediate results of floating-point expressions when is 0, 1, or 2. These types may be wider than.
C99 also added complex types:,,. C11 added imaginary types :,,. Including the header allows all these types to be accessed with using and respectively.

Boolean type

added a Boolean data type. Additionally, the header defines as a convenient alias for this type, and also provides macros for true and false. functions similarly to a normal integer type, with one exception: any conversion to a gives 0 if the value equals 0; otherwise, it gives 1. This behavior exists to avoid integer overflows in implicit narrowing conversions. For example, in the following code:

unsigned char b = 256;
if

Variable b evaluates to false if has a size of 8 bits. This is because the value 256 does not fit in the data type, which results in the lower 8 bits of it being used, resulting in a zero value. However, changing the type causes the previous code to behave normally:

_Bool b = 256;
if

The type also ensures true values always compare equal to each other:

_Bool a = 1;
_Bool b = 2;
if

In C23, became a core functionality of the language, allowing for the following examples of code:

bool b = true;
if

Bit-precise integer types

Since C23, the language allows the programmer to define integers that have a width of an arbitrary number of bits. Those types are specified as, where N is an integer constant expression that denotes the number of bits, including the sign bit for signed types, represented in two's complement. The maximum value of N is provided by BITINT_MAXWIDTH and is at least ULLONG_WIDTH. Therefore, the type takes values from −2 to 1 while takes values from 0 to 3. The type also exists, being either 0 or 1 and has no equivalent signed type. C2Y will most likely lift this restriction and allow which then has the possible values 0 and -1, removing the special case for.

Size and pointer difference types

The C language specification includes the s and to represent memory-related quantities. Their size is defined according to the target processor's arithmetic capabilities, not the memory capabilities, such as available address space. Both of these types are defined in the header.
is an unsigned integer type used to represent the size of any object in the particular implementation. The operator yields a value of the type. The maximum size of is provided via SIZE_MAX, a macro constant which is defined in the header. is guaranteed to be at least 16 bits wide. Additionally, POSIX includes, which is a signed integer type of the same width as.
is a signed integer type used to represent the difference between pointers. It is guaranteed to be valid only against pointers of the same type; subtraction of pointers consisting of different types is implementation-defined.

Interface to the properties of the basic types

Information about the actual properties, such as size, of the basic arithmetic types, is provided via macro constants in two headers: header defines macros for integer types and header defines macros for floating-point types. The actual values depend on the implementation.