// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0

#include 
#include 

int main()
{
        const int size = 20 ; // max size of a word
        char * myword = new char[size] ;  // intialize pointer

        cout << "please enter a word..." << endl ;
        cin >> myword ;

        cout << "your words is..." << myword << endl ;

        getch() ;

        return 0 ;
}

    Source: geocities.com/neonprimetime.geo/cpp/cpp_SourceCode

               ( geocities.com/neonprimetime.geo/cpp)                   ( geocities.com/neonprimetime.geo)