Oct 20, 2005 #1 pms18066 Programmer Jan 12, 2005 94 US Is there a func to convert a char/int to ascii??
Oct 20, 2005 #2 Diancecht Programmer Jan 8, 2004 4,042 ES I don't know what do you mean by converting an int to ASCII. In the case of char, I imagine you want to get the ASCII code. Just do: Code: char yourChar='a'; return (int) a; Cheers, Dian Upvote 0 Downvote
I don't know what do you mean by converting an int to ASCII. In the case of char, I imagine you want to get the ASCII code. Just do: Code: char yourChar='a'; return (int) a; Cheers, Dian