In C
I have
unsigned long arr[256]={0x00000000L,0x01020304L,0x21223212L,...}
in C++ in .h
-file i have
private:
unsigned long arr[256];
how-to populate it (fastest way) in .cpp
file with 256 constant values?
arr[256]={...}
// and
arr={...}
not work :-\