Data Structures In C programming Language
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 Lists
In terms 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 Structure in C Programming Language is a specialized format for organizing and storing data. General data structure types include the file, array, record, table, tree.. etc.
Array:
Array
is collection of similar data type, you can insert and delete an element from array without following any specific order.
Stack:
Stack
works on the basis of Last-In-First-Out (LIFO). Last entered element will be removed first.
Queue:
Queue
works on the basis of First-In-First-Out (FIFO). First entered element will be removed first.
Linked List:
Linked list
is the collection of nodes. Here you can insert and delete data in any order.