Keywords In C

Keywords In C

Keywords play important role in programming, when we used these words compiler automatically know what jobs is to be done.
Keywords In C

What is a keyword?


Keywords are reserved words because they have special meaning. One can not use keywords as variable name or constant name, etc. In C programming language we have 32 keywords. 


All the 32 keywords are given below:


auto    break    case    char const    continue    default    do

double    else    enum    extern    float    for    goto if

int    long    register    return    short    signed    sizeof static

struct    switch    typedef    union    unsigned    void    volatile    while


In our comming lesson we will discuss each keyword through the c programs.


Data Types In C

Load comments