C Keywords
Keywords are the words whose meaning has already been explained to the 'C' compiler (or in broad sense to the computer). These meaning cannot be changed.
1. Keyword serves as building blocks for program statements
2. All keywords written in lower case letters.
3. The keywords are also known as "Reserved words".
4. Every keyword performs some specific task.
5. There are only 32 keywords in 'C'.
Keywords
|
auto
|
double
|
int
|
struct
|
break
|
else
|
long
|
switch
|
case
|
enum
|
register
|
typedef
|
char
|
extern
|
return
|
union
|
const
|
float
|
short
|
unsigned
|
continue
|
for
|
signed
|
void
|
default
|
goto
|
sizeof
|
volatile
|
do
|
if
|
static
|
while
|