Escape Sequence & Keywords

Escape Sequence & Keywords

Escape Sequences are the special character the backspace (\) symbol is considered an escape character because it causes an escape from the normal interpretation of a string so that ther next character has special meaaning.

Escape Sequence Meaning
\n Newline
\b Backspace
\t One Tab
\a Alert

Keywords in C Language

keywords is a reserved words whose meaning already define in the comiler. you can not use it as a variable name.

A list of 32 keywords in the C language is given below:

auto break case char
const continue default do
double else enum extern
int short long register
return signed sizeof static
struct switch typedef union
unsigned void volatile while
float for goto if