keywords are the reserved words used in programming. Each keywords has fixed meaning and that cannot be changed by user.
For Example:
int money;
Here, int is a keyword that indicates 'money' is of type integer.
As, C programming is case sensitive, all keywords must be written in lower-case. Here is the list of all keywords predefined by ASCII C.
For Example:
int money;
Here, int is a keyword that indicates 'money' is of type integer.
As, C programming is case sensitive, all keywords must be written in lower-case. Here is the list of all keywords predefined by ASCII C.
keywords in C Language
- auto
- double
- int
- struct
- break
- else
- long
- switch
- case
- enum
- register
- typeof
- char
- extern
- return
- union
- continue
- for
- signed
- void
- do
- if
- static
- while
- default
- goto
- sizeof
- volatile
- const
- float
- short
- unsigned
0 comments:
Post a Comment