Derived Data Type in C programming language

Derived Data Type

On this page

Derived Data Type

Derived Data Type:-

1. Pointers

  • It is a variable which stores the address/memory location of another variable.

2. Array

  • An array is a collection of data items, all of the same type, accessed using a common name.

3. Structure

  • It is a user defined data type available in C that allows us to combine data items of different kinds.

4. Union

  • It is a special data type available in C that allows us to store different data types in the same memory location.

5. Function

  • A function contains a group of statements that specify the computing operations to be done.