prev

Data Types

next
  1. C supports a fairly small set of basic data types
    char single byte.
    int an integer (normally 2 chars)
    float single precision floating point (normally 4 chars)
    double double precision floating point (normally 8 chars)
  2. short and long can be applied to integers to more explicitly specify the type.
  3. signed and unsigned can also be applied to integers.
  4. long double specifies extended precision floating point.