Hi guys,
I am very new to c++ programming.Can you please give me an idea how I can use array in class? Do I put like
class PayRoll {
private:
double wages;
int hours;
public:
const int SIZE=5;
int members[SIZE]
.
.
.
Does it work this way? please help.