Node:More data types, Next:Data structures, Previous:Advanced operators, Up:Top
There are still a few data types in C that we have not discussed. Actually, since C allows you to define new data types at will, no one can ever cover all possibilities. We will only discuss the most important examples.
enum
void
volatile
const
In addition, there are two data types called struct
and
union
that are so important, they have received their own
chapter. (See Data structures, for more information on
struct
and union
.)