溫馨提示×

c語言有哪些關(guān)鍵字

小億
82
2024-09-03 07:24:38
欄目: 編程語言

C語言有以下32個關(guān)鍵字:

  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. int
  18. long
  19. register
  20. return
  21. short
  22. signed
  23. sizeof
  24. static
  25. struct
  26. switch
  27. typedef
  28. union
  29. unsigned
  30. void
  31. volatile
  32. while

這些關(guān)鍵字是C語言的保留字,它們具有特殊的意義和功能。在編寫C語言程序時,不能將這些關(guān)鍵字用作變量名、函數(shù)名或其他標(biāo)識符。

0