https://github.com/carusel02/database
Create a database using generic structures in C
https://github.com/carusel02/database
database generic-functions
Last synced: 24 days ago
JSON representation
Create a database using generic structures in C
- Host: GitHub
- URL: https://github.com/carusel02/database
- Owner: Carusel02
- Created: 2022-05-26T15:07:04.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T19:45:31.000Z (over 2 years ago)
- Last Synced: 2025-02-09T09:15:19.162Z (3 months ago)
- Topics: database, generic-functions
- Language: C
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Database project
### Description
Building the **database** with the help of some structures, using the work with **pointers**. The idea of the project is to log in a user present in that database through a unique password (set by it) whose practical purpose is to vote in various democratic elections.
### Implementation
Create basic functions such as `adding` a person to the database, `deleting` a person, `logging in`, `voting`, `displaying` the number of votes for each candidate.### Concepts
I will work especially with **pointers** and the database itself will consist of a **generic vector** in which I will copy the bytes of a structure type element. Thus, the topic itself will cover the part of **dynamic allocation** and working with pointer variables.