Data Structure in c
What is a program?
A Program is a set of instructions which performs operation on data.
Note: without data instruction can't be performed.
When program is dealing with the data, how it will organize the data in the main memory, that is what data structures.
What is Data Structure?
Data Structure is the way program organize the data in the main memory during the execution time of the program.
Example of Data Structures are:
- Array
- Matrices
- Linked list
- Stacks
- Queues
- Trees
- Graph
- Hashing
Comments
Post a Comment