Peter Olcott wrote:
Is this possible in C++ ???
Please, don't write parts of your question in your subject. Make sure
everything is in your post.
Of course it is possible to initialize static array members, it is even
mandatory.
class C
{
public:
static int a[10];
};
int C::a[10] = {1, 2, 3};
Jonathan