// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
// reads in 10 letters prints out the 10 letters

#include 
#include 

int main()
{
        const int size = 10 ; // number of letters in my array
        char myarray[size] ;

        cout << "Please enter " << size << " integers..." << endl ;

        // read in 10 letters from the user
        for(int i = 0 ; i < 10 ; i++){
                cout << "Please enter letter " << (i+1) << endl ;
                cin >> myarray[i] ;
        }

        // print out the 10 letters in the array
        cout << "\n Your 10 letters are below..." << endl ;
        for(int j = 0 ; j < 10 ; j++)
                cout << myarray[j] << " " ;

        getch() ;

        return 0 ;
}

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

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