C语言关键字有那些?
时间: 2024-08-12 22:09:05 浏览: 62
何为C语言关键字volatile
C语言的关键字是一组具有特殊含义的保留字,用于定义程序的结构和语义。它们在C语言中具有特定的作用,不能用作变量名、函数名或类型名。以下是一些主要的C语言关键字:
1. auto
2. break
3. case
4. char
5. const
6. continue
7. default
8. do
9. double
10. else
11. enum
12. extern
13. float
14. for
15. goto
16. if
17. inline
18. int
19. long
20. register
21. return
22. short
23. signed
24. sizeof
25. static
26. struct
27. switch
28. typedef
29. union
30. unsigned
31. void
32. volatile
33. while
阅读全文