I am trying to do the following:
class sig
{
public:
int p_list[4];
}
sig :: sig()
{
p_list[4] = {A, B, C, D};
}
I get an error
missing expression in the constructor.
So how do I initilalise an array?
See Question&Answers more detail:os