Thread
:
Converting Int -> ASCII
View Single Post
#
2
(
permalink
)
June 5th, 2007, 01:12 AM
rick84
Registered User
Join Date: Apr 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
there's nothing special all u have to do is to typecast the int data type into char data type
int i = 33;
cout<<char(i);
The above statement would do the trick for you.
rick84
View Public Profile
Find all posts by rick84