| Name | Description | Notes | Source | Availability | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
atomic_ |
Atomic integer type | ? | T | <stdatomic.h> |
C11 | ||||||
atomic_ |
Atomic integer type | ? | T | <stdatomic.h> |
C11 | ||||||
INT16_C() |
Create constant of type
int_ |
L | M | (·) | <stdint.h> |
C99 | C11 | ||||
INT_ |
Maximum value of
int_ |
L | M | <stdint.h> |
C99 | C11 | |||||
INT_ |
Minimum value of
int_ |
L | M | <stdint.h> |
C99 | C11 | |||||
int_ |
Smallest signed integer type with at least 16 bits | L | T | <stdint.h> |
C99 | C11 | |||||
PRIdLEAST16 |
Decimal output conversion specifier for
int_ |
M | <inttypes.h> |
C99 | C11 | ||||||
PRIiLEAST16 |
Decimal output conversion specifier for
int_ |
M | <inttypes.h> |
C99 | C11 | ||||||
PRIoLEAST16 |
Octal output conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
PRIuLEAST16 |
Decimal output conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
PRIXLEAST16 |
Hexdecimal output conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
PRIxLEAST16 |
Hexdecimal output conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
SCNdLEAST16 |
Decimal input conversion specifier for
int_ |
M | <inttypes.h> |
C99 | C11 | ||||||
SCNiLEAST16 |
General input conversion specifier for
int_ |
M | <inttypes.h> |
C99 | C11 | ||||||
SCNoLEAST16 |
Octal input conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
SCNuLEAST16 |
Decimal input conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
SCNxLEAST16 |
Hexdecimal input conversion specifier for
uint_ |
M | <inttypes.h> |
C99 | C11 | ||||||
UINT16_C() |
Create constant of type
uint_ |
L | M | (·) | <stdint.h> |
C99 | C11 | ||||
UINT_ |
Maximum value of
uint_ |
L | M | <stdint.h> |
C99 | C11 | |||||
uint_ |
Smallest unsigned integer type with at least 16 bits | L | T | <stdint.h> |
C99 | C11 | |||||
uint_ and
int_ are the smallest integer types of at least 16
bits.
uint_ is unsigned, and has the
range zero to
UINT_, which is at least
[0, +65535].
int_ is signed, and has the range
INT_ to
INT_, which is at least
[−32767, +32767].
The following macros can be used in the fmt argument of printf to print arguments of types
uint_ and
int_:
PRIuLEAST16PRIoLEAST16PRIxLEAST16PRIXLEAST16PRIdLEAST16PRIiLEAST16
The following macros can be used in the fmt argument of scanf to scan arguments of types
uint_ and
int_:
SCNuLEAST16SCNoLEAST16SCNxLEAST16SCNdLEAST16SCNiLEAST16
atomic_ is an alias for
_Atomic
uint_.
atomic_ is an alias for
_Atomic
int_.
Related types:
uint16_tint16_tuint_least16_t int_least16_t uint_fast16_t int_fast16_t
| Property |
uint_ |
int_ |
|
|---|---|---|---|
| Minimum width (bits) | 16 | ||
| Lowest value | 0 | ≤−32767 | |
| Highest value | ≥+65535 | ≥+32767 | |
| Constant |
UINT16_C(untyped-integer-constant) |
INT16_C(untyped-integer-constant) |
|
printf |
base 10 | "%"
PRIuLEAST16 |
"%"
PRIdLEAST16 or "%"
PRIiLEAST16 |
| base 8 | "%"
PRIoLEAST16 |
||
| upper-case base 16 | "%"
PRIXLEAST16 |
||
| lower-case base 16 | "%"
PRIxLEAST16 |
||
scanf |
base 10 | "%"
SCNuLEAST16 |
"%"
SCNdLEAST16 |
| base 8 | "%"
SCNoLEAST16 |
||
| base 16 | "%"
SCNxLEAST16 |
||
| base 16, 8 or 10 by prefix | "%"
SCNiLEAST16 |
||