Keywords: Keywords are reserved words in C that have predefined meanings and cannot be
used as identifiers (user-defined names). They are part of the C language and serve specific
purposes.
Here is a list of keywords in the C programming language:
- auto break case char const continue default do
- double else enum extern float for goto if
- inline int long register restrict return short signed
- sizeof static struct switch typedef union unsigned void
- volatile while
These keywords are reserved and have predefined meanings in the C language. It's
important to avoid using them as identifiers (user-defined names) in your C programs.
No comments:
Post a Comment