Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 关键字


C 关键字

在下表中可以找到一些有用的 C 关键字列表。

关键字 描述
break 跳出循环或 switch 块
case 在 switch 语句中标记代码块
char 可以存储单个字符的数据类型
const 将变量或参数定义为常量(不可变)
continue 继续执行循环的下一轮迭代
default 指定 switch 语句中的默认代码块
do 与 while 结合使用来创建 do/while 循环
double 通常为 64 位长,可以存储小数的数据类型
else 在条件语句中使用
enum 声明枚举类型
float 通常为 32 位长,可以存储小数的数据类型
for 创建 for 循环
goto 跳转到由标签指定的代码行
if 创建条件语句
int 通常为 32 位长,可以存储整数的数据类型
long 确保整数至少为 32 位长(使用 long long 来确保 64 位)
return 用于从函数中返回一个值
short 将整数的大小缩减到 16 位
signed 指定 intchar 可以表示正值和负值(对于 int,这是默认值,因此通常不需要关键字)
sizeof 返回变量或数据类型占用的内存量的运算符
static 指定函数中的变量在函数结束后保持其值
struct 定义结构体
switch 选择要执行的多个代码块中的一个
typedef 定义自定义数据类型
unsigned 指定 intchar 应该只表示正值,这允许存储高达两倍大小的数字
void 表示不返回值的函数或指定指向类型未指定数据的指针
while 创建 while 循环


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.