Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 474 Bytes

File metadata and controls

29 lines (20 loc) · 474 Bytes

C To-Do List Manager

A simple command-line to-do list manager written in C.

Features

  • Add tasks
  • Remove tasks
  • View tasks
  • Clear the to-do list

Build & Run

make        # Compile
make run    # Compile and run
make clean  # Remove compiled files

Files

  • src/ – Source code
  • bin/ – Compiled executable
  • data/ – Stores to-do.txt

Notes

  • Tasks are saved in data/to-do.txt
  • Compiled files and data are ignored by Git