Hi there,
I have a very C++ personal problem with an array
in my .h
I do that:
int myArray[SIZE];
where SIZE is defined.
in my .cpp
I want to fill myArray by the braces stuff
BUT, to do that, you have to do it at the declaration time (afaik)
How can I deal with the constraint to declare it in .h & the filling in the cpp ?
(it is probably the most basic thing that has the most stuck me)