> > Looking for a function that returns a char for and numberic ASCII passed
> in.
> > Anyone remember that one?
> For Example if I pass in a 65 it returns me an 'A'

It's called casting.  e.g.

int x = 65;
char c = (char) x;

or just

cout << (char) 65 << endl;




-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to