i want to convert char array to ascii,
i started trying with NSString, characterAtIndex ( failed due to lack of knowledge about manipulating unichar )
creating a char array and passing it to a NSString using stringWithCString ( failed due to lack of knowledge about encoding )
now at the end i am convincing myself using normal char array and type casting it into int.
but my mind says this is not a good practice.
Please tell me is there another Objective-C type solution, or is this the only solution.
I'm a beginner and am working on GNUStep.