[try Beta version]
Not logged in

 
enter key auto :)

May 10, 2015 at 10:30am
what is a code for automatic enter? :) like when you cin>> letter and it automatically gets posted? :)
May 10, 2015 at 11:07am
Something like getch() ?
May 10, 2015 at 11:16am
nop like i press, for example, "a" and it continues doing next function without me pressing "ENTER"key

something like that

getch() just hides "press any key to continue" message ...
May 10, 2015 at 11:18am
Nope :) try this
1
2
3
char x;
x=getch();
cout<<x;
May 10, 2015 at 11:19am
Google "c++ unbuffered input"

getch() should work but it's nonstandard c++.
Last edited on May 10, 2015 at 11:31am
May 10, 2015 at 11:27am
oh i see ill give it a shot :)
May 10, 2015 at 11:38am
for getch(); to work i presume we need to add #include "conio.h"
May 10, 2015 at 11:42am
yep it worked ;) thank you ;)
Topic archived. No new replies allowed.