Glossary

AddExpense

Allocate a new node, fill in the data, and insert it at the head of the list. 2. **PrintAllExpenses** — Traverse the list from head to tail, printing each expense. 3. **TotalExpenses** — Traverse the list, summing the `Amount` fields. 4. **FreeAllExpenses** — Traverse the list, disposing of every no

Learn More

Related Terms