struct rec
{
   char * id;
   char firstname[15];
   char lastname[15];
   int a[10];
   struct rec* prev;
   struct rec* next;
};
So I start out with this being my structure, I convert this portion
class rec
{
   private:
       char * id;
       char firstname[15];
       char lastname[15];
       int a[10];
       rec* prev;
       rec* next;
}
        rec::rec(const rec&)
Constructor seems to keep giving issues, I am on the verge of figuring it out, deleted code so it would not be copied
 
     
    