[SOLVED]Old Conio.h Header

Just wondering if anyone knows where I can find out all they key values for the conio.h header file. I know for example ENTER = 13 and ESC = 27. But I can't find any more information than that. Just wondering if anyone can help us with a list of what they all are.

Thanks,
Myth.
Last edited on
I dont know or this is what you're looking for, but you can find all ASCII codes on this site:
http://www.cplusplus.com/doc/ascii.html

On wikipedia, you can find the meaning of the first 32 (and the others):
http://en.wikipedia.org/wiki/ASCII

According to the ASCII code, 13 is "form feed" wich I dont completly understand (not a native-speaker) but from what I believe it's enter, and 27 is indeed escape (of course you need to translate it from heximal into decimal numbers).
Thanks for that - That's exactly what I was looking for :)
What I did was make a program that does
1
2
3
for(int i=0;i<256;i++){
cout << char(i);
}

and called it from the command line with:
export > ascii.txt
where export is the program name.
Could you explain exactly what you mean a little more?
All that code does is print the first 256 characters of the active code page. Characters 0 to 31, by the way, have no standard appearance.
Ah, Thanks for that helios - I see what you mean.
Topic archived. No new replies allowed.