View Single Post
Old Mar 17, 2005 | 07:03 PM
  #11  
sherwood's Avatar
sherwood
I missed Sean
 
Joined: Aug 2004
Posts: 11,285
Likes: 1
From: Fairfield/Bridgeport CT
Default

yeh, all i have to do is input the char and then convert to int using:
char a;
int b;
cin >> a;
b = (int) a;
cout << b;
Reply