Apologies if I missed another thread, I looked through the recommended and none are quite like what I am experiencing. I am trying to display the alphabet in both upper-and-lower-case letters. Before I commit to the full thing I wanted to test with just a few:
int main()
{
char *letters[79] = { "Aa ","Bb ","Cc ", "/0"} ;
int pause;
cout << "Letters are: " << letters << endl ;
cout << "Continue (Y or N)" << endl ;
cin >> pause;
cout << endl;
return 0;
}
When I attempt to compile this has been the result:
What I cannot understand is why I am getting what appears to be a hex output on those letters instead of the letters themself.
char*instead ofstd::string? To learn, or because you think that's the best approach? Knowing this helps others help you. :)"/0"? My crystall ball tells me it does not what you thinkt it does.