I'm using visual studio 13. I just declared and initialized an unsigned long array.
unsigned long z[8] = { 0xffffffff, 0x00000001, 0x00000000, 0x00000000,0x00000000, 0xffffffff, 0xffffffff, 0xffffffff };
But it throws the following error
error C2536: : cannot specify explicit initializer for arrays
I read some answers related to this error but its not helping me. Can somebody help me solve this error?