Here is a program that compiles. Now add in all the stuff you need a piece at a time to make the program work. If you've already done more than this, please show your effort here.
1 2 3 4 5 6 7 8
#include <iostream> //for printing a menu and getting a choice from the user
#include <fstream> //for file I/O
#include <string> //for strings like fname and lname
int main()
{
return 0;
}