Question: Give me C + + coding for personal finance tracker by using array to keep the data of expenses, searching for user search expenses by

Give me C++ coding for personal finance tracker by using array to keep the data of expenses, searching for user search expenses by category, sorting to sort the data from low to high and class to seperate one by one function.
the code of expenses class here:
class expenses
{
public:
expenses();
~expenses();
void fill();
void display();
void exit();
private:
int* Array;
};

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!