Keywords in C language are predefined special words used for specific purposes. Common keywords include: data type (int, float, double, char), control flow (if, else, for, while, do...while, switch, break, continue), function (main, return, void), Scope (auto, extern, static, register), others (typedef, sizeof, const, volatile, struct, union, enum).
Common keywords in C language
In C language, keywords are predefined words, has a specific meaning and may not be used for other purposes. The following are some of the most common C language keywords:
Basic data types:
##Control flow:
Function:
Scope:
Others:
The above is the detailed content of Common keywords in c language. For more information, please follow other related articles on the PHP Chinese website!