Introductory C++ module covering namespaces, classes, member functions, streams, and basic OOP concepts.
A simple program that takes command-line arguments and outputs them in uppercase.
Usage:
cd ex00
make
./megaphone "hello world"
# Output: HELLO WORLDIf no arguments provided, outputs: * LOUD AND UNBEARABLE FEEDBACK NOISE *
A contact management system that stores up to 8 contacts and allows adding and searching them.
Usage:
cd ex01
make
./phonebookCommands:
ADD- Add a new contact (prompted for: first name, last name, nickname, phone number, darkest secret)SEARCH- Display all contacts in a table and view details by indexEXIT- Quit the program
Each field is displayed as 10 characters wide, truncated with a dot (.) if longer.
Each exercise has its own Makefile. Simply run:
make # Compile
make clean # Remove object files
make fclean # Remove all compiled files
make re # Recompile