What will getch() return for these keys:

Left Arrow
Right Arrow
Up Arrow
Down Arrow
ESC
F1-12
Tab
Enter
Shift
CTRL
ALT
Backspace

like in this

switch (getch())
{
case LEFT ARROW:
blah blah
break;
}