Basic Types
Arithmetic types and are further classified into integer and floating-point types
Enumerated types
Used to define variables that can only assign certain discrete integer values
void
No value is available
Derived types
Pointer, array, structure, union, function types
Aggregate types
Array and structure types
What C operator is used to yield the storage size of the object or type in bytes?
sizeof()
Function returns as void
void exit (int status);
Function arguments as void
int rand(void);
Pointers to void
void *malloc (size_t size);