类型支持

来自cppreference.com
< c

基本类型

语言定义的基础类型

附加基本类型及便利宏

定义于头文件 <stddef.h>
sizeof 运算符返回的无符号整数类型
(typedef)
两个指针相减返回的有符号整数类型
(typedef)
实现定义的空指针常量
(宏常量)
对齐要求不小于任何其他标量类型的类型
(typedef)
从指定结构体类型的起始到指定成员的字节位移
(宏函数)
定义于头文件 <stdbool.h>
bool
(C99)
便利宏,展开成 _Bool
(关键词宏)
true
(C99)
展开成整数常量 1 (C23 前) ((_Bool)+1u) (C23 起)
(宏常量)
false
(C99)
展开成整数常量 0 (C23 前) ((_Bool)+0u) (C23 起)
(宏常量)
__bool_true_false_are_defined
(C99)
展开成整数常量 1
(宏常量)
定义于头文件 <stdalign.h>
alignas
(C11)
便利宏,展开成关键词 _Alignas
(关键词宏)
alignof
(C11)
便利宏,展开成关键词 _Alignof
(关键词宏)
__alignas_is_defined
(C11)
展开成整数常量 1
(宏常量)
__alignof_is_defined
(C11)
展开成整数常量 1
(宏常量)
定义于头文件 <stdnoreturn.h>
noreturn
(C11)
便利宏,展开成 _Noreturn
(关键词宏)

定宽整数类型 (C99 起)

数值极限

注解

truefalse 的类型为 int 而非 _Bool

(C99 起)
(C23 前)

程序可以解除定义,并且可以在之后重新定义宏 booltruefalse 。然而这种能力是一项弃用的特性。

(C99 起)

示例

#include <stdio.h>
#include <stdbool.h>
#include <stdalign.h>
 
int main(void)
{
    printf("%d\n%d\n%d\n", true && false, true || false, !false);
    printf("%zu\n", alignof(char));
}

输出:

0
1
1
1

引用

  • C17 标准(ISO/IEC 9899:2018):
  • 7.15 Alignment <stdalign.h> (p: 196)
  • 7.18 Boolean type and values <stdbool.h> (p: 210)
  • 7.19 Common definitions <stddef.h> (p: 211)
  • 7.23 _Noreturn <stdnoreturn.h> (p: 263)
  • 7.31.9 Boolean type and values <stdbool.h> (p: 332)
  • C11 标准(ISO/IEC 9899:2011):
  • 7.15 Alignment <stdalign.h> (p: 268)
  • 7.18 Boolean type and values <stdbool.h> (p: 287)
  • 7.19 Common definitions <stddef.h> (p: 288)
  • 7.23 _Noreturn <stdnoreturn.h> (p: 361)
  • 7.31.9 Boolean type and values <stdbool.h> (p: 456)
  • C99 标准(ISO/IEC 9899:1999):
  • 7.18 Boolean type and values <stdbool.h> (p: 253)
  • 7.19 Common definitions <stddef.h> (p: 254)
  • 7.26.7 Boolean type and values <stdbool.h> (p: 401)
  • C89/C90 标准(ISO/IEC 9899:1990):
  • 4.1.5 Common definitions <stddef.h>

参阅