Skip to main content

Posts

Showing posts with the label different data types

Data Types in C Programming

C language is rich in its data types. C supports several different types of data, each of which may be represented differently within the computer memory. There are three cases of data types: 1. Basic data types (Primary or Fundamental) e.g.int, char 2. Derived data types e.g. array, pointer, function 3. User defined data types e.g. structure, union, enum The basic data types are also k/a built in data types. The basic data types are listed below. Typical memory requirements are also given:   Data               Types Description                          Typical Memory Requirement char                  single character             ...