views:

50

answers:

1

how to simulate a "escape key" as if an escape key has been pressed, at the end of a string sequence in c++?

i need to provide the stdin input, which accepts string data until Escape key is pressed,

for that it receives the characters correctly, but how do i send an 'escape key stroke' finally?

+3  A: 

The ASCII code for "escape" is 27 (= 1b in hex). To send an escape you just have to send that character '\0x1b'.

sth