https://github.com/utsavdotdev/dsa-project
It is an cli app to track the expense and income.
https://github.com/utsavdotdev/dsa-project
Last synced: 5 months ago
JSON representation
It is an cli app to track the expense and income.
- Host: GitHub
- URL: https://github.com/utsavdotdev/dsa-project
- Owner: utsavdotdev
- Created: 2025-07-29T08:38:57.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-07-29T10:35:31.000Z (6 months ago)
- Last Synced: 2025-07-29T12:49:19.125Z (6 months ago)
- Language: C++
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Personal Expense and Income Tracker
This is a simple C++ console application to help you track your expenses and income.
### Features
- Add new transactions (income or expense)
- Search transactions by category
- Display transactions sorted by amount
- View all transactions
- Show a budget summary (total income, expenses, and balance)
### How to Run
1. Make sure you have a C++ compiler (like g++) installed.
2. Open your terminal and navigate to the project folder.
3. Compile the program:
```
g++ -o budget_tracker main.cpp
```
4. Run the program:
```
./budget_tracker
```
### Usage
Follow the on-screen menu to add transactions, search, and view your budget summary.
---
This project is for learning purposes and demonstrates basic data structures in C++.