Posts

Showing posts from January, 2023

C TOKENS

Each and every smallest individual units in c program is known as c tokens . C tokens are the bacis Building blocks in c language which are constructed togather to write in a c program C token are six types Keywords Constant String Special symbol Identifiers Operator  Keywords Keywords are predefined words used in programming that have special meaning to the compiler.keywords are cannot be used as an identifier  List of keywords Auto    break    case    char    const    continue     default    do    double    else    enum   extern    float    for    goto    if    int   long    register    return    short static   struct    signed   switch    sizeof    typedef    union    unsigned    void  ...

C PROGRAMMING , STRUCTURE OF C PROGRAMMING