Advertisement

1 - 10 of 43 containing alltags:("_getch") (0 seconds)
Hi, I like to know what's the closest function to getch() in UNIX platform. Basically, I need a function that reads a character from the keyboard without echo.  I don't want to type the "enter" k...
Zones: Unix Systems ProgrammingDate Answered: 10/15/1997 Grade: D Views: 4
Whenever I use the getch() or getche() functions and follow with scanf or gets(), the character typed by the user at the getch()/ getche() prompt is 'echoed' at the gets()/scanf prompt.  The only ...
Zones: CDate Answered: 08/25/1998 Grade: C Views: 0
How can I capture a character from the user's key press without the user having to press the 'enter' key. Similar to the getch function in Turing. This question was asked, but wasn't correctly sol...
Zones: JavaDate Answered: 12/07/1998 Grade: A Views: 0
looking for some help... i've been making a simple program actually a simple game for a school project. its about a guy and some ants. the guy has to save himself from the ants and reach the de...
Zones: C++Date Answered: 03/09/2001 Grade: B Views: 0
I'm trying to use getch() to wait for a keypress before continuing.  My problem is the program will wait for the keypress even before executing the lines above it.  Example: #include <iostream.h...
Zones: C++Date Answered: 11/10/2002 Grade: A Views: 0
IS IT POSSIBLE IN ‘C’ TO COME OUT FROM AN INPUT  FUNCTION [getch( );getchar( ) etc )IF IT  DOESN’T GET ANY RESPONSE WITHIN A CERTAIN TIME LIMIT.
Zones: CDate Answered: 11/30/2003 Grade: A Views: 0
is there any other way to record a keyboard hit through console programming other than the use of getch()?
Zones: C++Date Answered: 02/04/2003 Grade: A Views: 0
Hi I would like to have a 2 multiplayer game implemented with a curses interface, but I amcurrently encouterung a problem because i can't get an efefctive way of getting the input of 2 or more ...
Zones: CDate Answered: 04/16/2004 Grade: B Views: 0
I have this code block void main() {       string s1;       cout << "Enter your sentence: " << endl;       char ch='a';       while(ch!='\r')       {       ch=getchar();       }        } How would I then assign ch to ...
Zones: Programming, ...Date Answered: 09/04/2006 Grade: A Views: 0
I am having gcc 3.4.2 I need write a small programme  which will read a string from input without echoing (like password it should not display) How can i do it with getch()?
Zones: CDate Answered: 05/23/2007 Grade: A Views: 0