|
Current Categories - C-programming
*keywords- Each computer programming language has its own set of key words or reserved
words.keywords are special type of words that meaning is defined inside the compiler.
- The keywords are also called Reserved words.
- Keywords are the words whose meaning has already been explained to the C compiler and their meanings cannot be changed.
- Keywords serve as basic building blocks for program statements.
- Keywords can be used only for their intended purpose.
- Keywords cannot be used as user-defined variables.
- All keywords must be written in lowercase.
- There are 32 keywords available in C
*List of keywords-
Data types |
Qualifiers,Loop |
User-defined,others |
Storage |
int |
signed |
typedef |
auto |
char |
unsigned |
const |
extern |
float |
short |
enum |
register |
double |
long |
volatile |
static |
- |
for |
sizeof |
- |
- |
while |
- |
- |
- |
do |
- |
- |
Decision |
Jump |
Derived |
function |
if |
goto |
struct |
void |
else |
continue |
union |
return |
switch |
break |
- |
- |
case |
- |
- |
- |
default |
- |
- |
- |
|
|
|