Hi,

Let's take a class A

Code:
class A
{
      char a[10];

public:

      A(char *);
};
so..once I have this class with a constructor that accepts a char *, can I do this..?

Code:
 A::A(char * s)
 :a(s){}
if not, it will mean that a array member can never be initialized using the member initialization list. or is it not?

will be elated to get the right "pointer". ( :-D )

Indrajit