|
Hi,
I'm using Borland C++Builder 4 facility (i.e InputBox) for getting inputs. The InputBox returns an 'AnsiString' type. But I want to parse this input (AnsiString type) into my variable (Char type), e.g. Char c[50].
Obviously I can not do this :
c[50]=InputBox->Text;
So.. Does anybody know how to convert an 'AnsiString' type into a 'Char' type in Borland C++Builder ?
Please explain to me using some simple examples/codes.
Regards,
Aries
Nb. Answer in English please.
|