Every 'C' word is classified as either a keyword or an identifier. All keywords have field meaning & these mean's can't be changed.
Standard ANSI 'C' recognizes the following 32 keywords are:
1.
|
Defines
a local variable as having a local lifetime.
|
|
2.
|
Passes
control out of the compound statement.
|
|
3.
|
Makes
variable value or pointer parameter un modifiable.
|
|
4.
|
Passes
control to the beginning of the loop.
|
|
5.
|
Do-while
loop
|
|
6.
|
Defines
a set of constants of type int.
|
|
7.
|
Indicates
that an identifier is defined elsewhere
|
|
8.
|
Floating
point data types.
|
|
9.
|
double
|
Floating
point data types.
|
10.
|
for
|
For
loop
|
11.
|
Unconditionally
transfer control.
|
|
12.
|
Conditional
statement
|
|
13.
|
else
|
Conditional
statement
|
14.
|
Basic
data type (integer).
|
|
15.
|
char
|
Basic
data types (character).
|
16.
|
Tells
the compiler to store the variable being declared in a CPU register.
|
|
17.
|
Exits
the function.
|
|
18.
|
Type
modifiers.
|
|
19.
|
long
|
Type
modifiers.
|
20.
|
signed
|
Type
modifiers
|
21.
|
unsigned
|
Type
modifiers.
|
22.
|
Returns
the size of the expression or type.
|
|
23.
|
Preserves
variable value to survive after its scope ends.
|
|
24.
|
Groups
variables into a single record.
|
|
25.
|
Branches
control
|
|
26.
|
case
|
Branches
control
|
27.
|
default
|
Branches
control
|
28.
|
Creates
a new type.
|
|
29.
|
Groups
variables which share the same storage space.
|
|
30.
|
Empty
data type.
|
|
31.
|
Indicates
that a variable can be changed by a background routine.
|
|
32.
|
Repeats
execution while the condition is true.
|
__________________________________________________________________________________
__________________________________________________________________________________
Post a Comment