Data Structures in C are used to store data in an organised and efficient manner. The C Programming language has many data structures like an array, stack, queue, linked listtree, etc. A programmer selects an appropriate data structure and uses it according to their convenience.

Data Structure in C Programming Language is a specialized format for organizing and storing data. In General data structure types include the file, array, record, table, tree.. etc.

  • Array: Array is collection of similar data type, you can insert and deleted element form array without follow any order.
  • Stack: Stack work on the basis of Last-In-First-Out (LIFO). Last entered element removed first.
  • Queue: Queue work on the basis of First-In-First-Out (FIFO). First entered element removed first.
  • Linked List: Linked list is the collection of node, Here you can insert and delete data in any order.
  • Tree: Stores data in a non linear form with one root node and sub nodes.