Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions Telephone Directory System.cpp → Telephone_Directory_System.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
// TELEPHONE DIRECTORY SYSTEM

// DESCRIPTION
/*
The Telephone Directory System is a C++ project that manages contact information such as names, addresses, and phone numbers. Users can:

Add Records: Input contact details to store in a file.
View Records: Display all saved contacts.
Search Records: Look up a contact by name.
Modify Records: Update the details of an existing contact.
Delete Records: Remove a contact from the file.
Exit: Close the program.
#include <iostream.h>
#include <fstream.h>
#include <iomanip.h>
Expand All @@ -11,6 +20,8 @@
#include <graphics.h>
#include <dos.h>

*/

class stud
{
public:
Expand Down Expand Up @@ -470,4 +481,4 @@ void main()
}
}
}
}
}