2.1. C Keywords

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

By Category:
------------
Data            Control
----            -------
void            if      else
char            switch  case    default
short           while   do      for
int             return  goto    break   continue
long
float
double

signed  unsigned
auto    static    extern
const   volatile  register
struct  union     enum
typedef sizeof
Note typo in book, Table 2.1, page 30: ints should be int.