https://github.com/nickklos10/strings_linked_list
https://github.com/nickklos10/strings_linked_list
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nickklos10/strings_linked_list
- Owner: nickklos10
- Created: 2023-06-16T21:56:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T18:17:13.000Z (about 1 year ago)
- Last Synced: 2025-01-18T02:27:56.807Z (4 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Storing strings in a linked list
This C program demonstrates the creation, manipulation, and deletion of a linked list to store and process characters, forming strings. The program reads a series of characters from an input file, inserts them into a linked list, converts the linked list back to a string, and then cleans up the memory used by the linked list.
The main function reads character sequences from an input file, uses these characters to build a linked list, converts the list back to a string, and then deallocates the list. This process is repeated for a specified number of inputs.