Ad

C - Keywords

In C Language, keywords are the reserved words whose meaning and purpose has already been explained to the C compiler. There are only 32 predefined keywords available in C language.

List of C Keywords is listed below:

C-Language Keywords are:
auto double int struct
break else long switch
case enum register typedef
char extern return union
const float short unsigned
continue for signed void
defaultgoto sizeof volatile
do if static while

Keyword category wise:

Data Types: char, double, float, int, long, short, signed, unsigned

Storage classes: auto, extern, register, static, const

Conditional Statement: if, else, switch, default, case,

Jumping Statement: break, continue, goto, return

Loops: do, for, while

User-Defined Data type: struct, enum, typedef, union

Other: void, sizeof, volatile

C Language Feedback, Questions, Suggestions, Discussion.

Ad: