View Single Post
Old Mar 17, 2005 | 06:48 PM
  #3  
Misa's Avatar
Misa
Pic Whore
 
Joined: Jul 2004
Posts: 22,224
Likes: 1
From: NJ
Default

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;
}
Reply