An open API service indexing awesome lists of open source software.

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.

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++.