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

Originally Posted by janiVI
quick google search...
you might be able to work with it

Code:
// Transform a word into ASCII code
 
#include <iostream>
using namespace std;
int main()
{
char word[32];
int x = 0;
cout << "Please enter the word (maximum 32 characters):\n";
cin >> word;
cout << "The ASCII for this word is:\n";
while (word[x] != '\0') // While the string isn't at the end...
{
cout << int(word[x]); // Transform the char to int
x++;
}
cout << "\n";
return 0;
}
ho-fawk... so i just conver it to an int and it does it for me?
Reply