Skip to content

yelypk/File-serialization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Student List (serialization.c)

A small console application in C for storing a list of students in a doubly linked list with saving/loading to a text file.

Features

  • Adding and deleting students (by first and last name).
  • Printing the list to the console.
  • Saving to the data.txt file and loading at startup.
  • Input validation (numbers and strings, prohibition of the | symbol).

Data structures

  • struct Student- first name, last name, middle name, struct Date {year, month, day}, group, gender (enum Sex { male, female }).
  • Data is stored in a doubly linked list LList.

Application menu

  • Print list of students
  • Add student
  • Delete student
  • Exit (saving to data.txt)

About

The transformation of structured information into a string and back. Linked list.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages