Apr 12, 2002 #1 Bratan Technical User Joined Jul 13, 2008 Messages 3 Location AP Help! How can I transform a char symbol to its ASCII? I did not find a function in c++.
Apr 12, 2002 #2 Zyrenthian Programmer Joined Mar 30, 2001 Messages 1,440 Location US If you mean its ascii value just cast it char c = 'A'; int ascii = (int)c; Matt Upvote 0 Downvote