What languge are you using? XCode supports Obj-C, C++, Java, AppleScript and probably lots more! Also what type is the character array? Is it char (i.e. a byte) or unichar (2 bytes I think).
You still havn't said what language! That narrows it to C++ (Carbon) or Obj-C (Cocoa). When you say text input do you mean from the command line or from a text box on screen (in a window)? If it's from a text box in a window you need to very carefull with this as the string value from that text box will be 16-bit Unicode, whereas your array is for 8-bit chars.
I am using OBJ-C in cocoa, and would like to assign a text input, which is a text box inside a window (not command line) to a C/C++ style character array.
I am using OBJ-C in cocoa, and would like to assign a text input, which is a text box inside a window (not command line) to a C/C++ style character array.
Then the above will work for UTF-8 strings. If you need it in an array that you have assigned you can just copy the characters across or use the provided NSString method. You need to know what encoding you are in.