◐ Shell
clean mode source ↗

Soporte de tipos - cppreference.com

De cppreference.com

Tipos básicos

Tipos fundamentales definidos por el lenguaje

Tipos básicos adicionales y macros prácticas

Definido en el archivo de encabezado <stddef.h>

tipo entero sin signo devuelto por el operador

sizeof

Original:

unsigned integer type returned by the

sizeof

operator

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(typedef) [editar]

tipo entero con signo devuelto al restar dos punteros

Original:

signed integer type returned when subtracting two pointers

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(typedef) [editar]

definido por la implantación de puntero nulo constante

Original:

implementation-defined null pointer constant

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(constante de macro) [editar]

un tipo con el requisito de alineación tan grande como cualquier otro tipo escalar

Original:

a type with alignment requirement as great as any other scalar type

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(typedef) [editar]

Desplazamiento en bytes desde el inicio de una estructura hasta el miembro especificado

Original:

byte offset from the beginning of a struct type to specified member

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(macro de función) [editar]

Definido en el archivo de encabezado <stdalign.h>

alignas

(C11)

macro práctica que se expande al término clave _Alignas
(keyword macro)

alignof

(C11)

macro práctica que se expande al término clave _Alignof
(keyword macro)

__alignas_is_defined

(C11)

se expande a una constante entera 1
(constante de macro)

__alignof_is_defined

(C11)

se expande a una constante entera 1
(constante de macro)

Definido en el archivo de encabezado <stdnoreturn.h>

noreturn

(C11)

macro práctica que se expande al término clave _Noreturn
(keyword macro)

Soporte de tipo booleano (desde C99)

Tipos de enteros de ancho fijo (desde C99)

Límites numéricos

Referencias

  • Standard C11 (ISO/IEC 9899:2011):
  • 7.15 Alignment <stdalign.h> (p: 268)
  • 7.19 Common definitions <stddef.h> (p: 288)
  • 7.23 _Noreturn <stdnoreturn.h> (p: 361)
  • Standard C99 (ISO/IEC 9899:1999):
  • 7.19 Common definitions <stddef.h> (p: 254)
  • Standard C89/C90 (ISO/IEC 9899:1990):
  • 4.1.5 Common definitions <stddef.h>

Véase también