# RPG Character Manager in C
A simple console application written in C to create, view, and manage RPG character sheets. The data is saved locally in a text file.
The program provides an interactive menu with the following features:
- Create Sheets: Allows the user to create one or more character sheets by entering:
- Name
- Race
- Class
- Strength
- Vigor (or Constitution)
- Dexterity
- Intelligence
- Wisdom
- View Sheets: Reads and displays all saved character sheets from the
fichas_teste.retfile in the console.- Delete Sheet: Allows the user to remove a specific sheet by searching for the character's name.
- Data Persistence: All sheets are saved to a
fichas_teste.retfile so that data is not lost when the program closes.
This project was developed in C and can be compiled using a compiler like GCC.
- Clone the repository:
git clone [https://github.com/your-username/rpg-character-manager.git](https://github.com/your-username/rpg-character-manager.git) cd rpg-character-manager
- Compile the program: Use GCC (or another C compiler) to compile the
Trabalho.Cfile:gcc Trabalho.C -o rpg_manager
- Run the program:
- On Linux or macOS:
./rpg_manager- On Windows:
rpg_manager.exe
- Usage: The program will display a main menu. Simply follow the on-screen instructions. The created sheets will be saved in the
fichas_teste.retfile in the same directory.
- C Language
- Standard Libraries:
stdio.h,stdlib.h,locale.h,string.h