I have a global variable like this:

constchar EndByte[] = {'\x0D','\x0A'};

class Test
{
public:

Private:

}
I want to make this global array as a member variable of the class & initialise it.

How can I do this?....

Kohinoor