So I have this class Gaus. I want Gaus to have a member lambda which is of type
double[]. How do I say that in my .h file. Do I have to commit to a certain array (i.e do some initialization) or can I wait till someone calls my constructor where they pass in an array and the size of the array.
for instance can I do:
1 2 3 4 5 6
class Gaus {
private:
double lambda[];
public:
Gaus (double lam[], int size);
}