Data structure in C

Data structure in C:– C support a rich set of derived and user define data type.Data structures are used to store data in a computer in an organized form. In C Programming Language Different types of data structures are; Array, Stack, Queue, Linked List, Tree. In term of computer programming language, a data structure may be selected or designed to store data for the purpose of working on it with various algorithms

Data types -: In c programming language data are three types

 

  1. fundamental data types
  2. Derived data types
  3. user defined data types

1.fundamental data type-: In the c language has a rich set of data type as like int,char,float,double..

2.Derived data types-: C language support of rich of set data types as like

  1. Arrays
  2. function
  3. Pointer

Array and structural are referred to as structured data types because they can be used to represent data values that have a structure of some sort. structure datatype provide an organization scheme that show the relationship among the individual elements and facilitate efficient data manipulations in progamming such data type are know as data structure.

3.user defined data types.:- C support creation and manipulation of the following data structures ……

  1. Linked list
  2. stacks
  3. queues
  4. Trees

 

 

Leave a Comment