https://github.com/praabindhp/list_adt-array
C Program For List ADT Array
https://github.com/praabindhp/list_adt-array
adt array c-programming-language code list
Last synced: 8 months ago
JSON representation
C Program For List ADT Array
- Host: GitHub
- URL: https://github.com/praabindhp/list_adt-array
- Owner: praabindhp
- Created: 2021-02-26T12:09:37.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-27T12:41:27.000Z (almost 5 years ago)
- Last Synced: 2025-03-14T00:24:04.395Z (11 months ago)
- Topics: adt, array, c-programming-language, code, list
- Language: C
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# List_ADT-Array
C Program For List ADT Array
C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions.
This Is A C-Program To Illustrate The List ADT Using Array
The Operations/Error Illustrated :
1. Create
2. Insert
3. Delete
4. Display
5. MakeEmpty
6. Find
7. IsEmpty
8. IsFull
9. Deletelist
10. Exit
The User Will Be Prompted To :
1. Enter Your Option
2. List is Created successfully
3. Enter the Element to insert
4. Enter the Element to insert
5. Where u want to insert?
6. Elements present in the list
7. Which element is to find
8. Element is at position
9. List Empty ?
9.1. List is Not Empty
9.2. List is Empty
10. List Full ?
10.1. List is Not Full
10.2. List is Full
The GCC File Also Have Been Pushed.