a simple c++ program for an adress book that adds contact, stores the contacts and searches for the contact... it should have only one class called class addy_book..i called a constructor and am stuck coz i don't know where to go from here
#include <iostream>
#include <fstream>
using namespace std;
class addy_book {
private:
char*fname;
char*lname;
double fone_num;
char sex;
public:
addy_book();
add_to();
view();
search();
};