I'm trying to create a member function that allows an user to set member array variables.
I've been looking everywhere but I can't find the problem in my code,
#include <string>
#include <iostream>
using namespace std;
class Employee
{
protected:
string name;
char ssn[11];
char id[5];
char hired[8];
public:
Employee(char ssn, char id, char hired); //Constructor
Employee(string name);
~Employee(); //Destructor
void setName(string n) { n = name; }
void setSSN(char i) { ssn = i; }
};
int main()
{
return 0;
}
ssn = i;You're assigning one character to an 11-character array. I'm not sure why you usestd::stringelsewhere, but not for these. – chris Jul 11 '12 at 20:39char, but should takechar *and anintfor size, orchar (&)[LENGTH_OF_ARRAY], to end up with more than one character. Better yet,std::stringmakes things so much easier and better. – chris Jul 11 '12 at 21:03