Kohinoor24
March 6th, 2002, 03:14 AM
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
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