I want to convert char array to ascii,
I started trying with NSString, characterAtIndex (due to lack of knowledge on unichar management)
creating a char array and passing it to NSString using stringWithCString (failed due to lack of coding knowledge)
now in the end I convince myself using a regular char array and type it into an int.
but my mind says this is not a good practice.
Please tell me if there is another solution like Objective-C, or is this the only solution.
I am new and working on GNUStep.
source
share