C++ compiler

C++ compiler

Re: C++ compiler Posted by OtZman on Sun Jan 18th 2004 at 9:24pm
OtZman
1890 posts
Posted 2004-01-18 9:24pm
OtZman
member
1890 posts 218 snarkmarks Registered: Jul 12th 2003 Occupation: Student Location: Sweden
I've decided to make my "own" ASCII chart now. I simply test all the numbers 1-255 to see what letter they represent.
Re: C++ compiler Posted by scary_jeff on Mon Jan 19th 2004 at 12:25am
scary_jeff
1614 posts
Posted 2004-01-19 12:25am
1614 posts 191 snarkmarks Registered: Aug 22nd 2001
Sorry if you already did this, but in the second table at asciitable.com, did you convert the numbers into hex? To output ?, do cout << "\\x86";. For ?, use cout << "\\x84";, etc.
Re: C++ compiler Posted by OtZman on Mon Jan 19th 2004 at 3:28pm
OtZman
1890 posts
Posted 2004-01-19 3:28pm
OtZman
member
1890 posts 218 snarkmarks Registered: Jul 12th 2003 Occupation: Student Location: Sweden
I've already done that... but how do I convert the numbers into hex?