I'm studying in this book (self study) and I'd really appreciate if you could help me with a little 'try this' exercise.
This is the code I wrote:
#include "../../../std_lib_facilities.h"
int main()
{
for (char i ='a'; i <='z'; ++i) {
int x = i;
cout << i << '\t' << x << '\n';
}
keep_window_open();
return 0;
}
The next step, according to the book, is: "[...] then modify your program to also write out a table of the integer values for uppercase letters and digits" Is there a function to do that, or do I simply have to repeat the loop starting from A? Thanks
'A'? Did it work? – Luchian Grigore Sep 11 '12 at 18:07