The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
36 views

scanning a float, getting seemingly random values

I was given an assignment to create a procedure that scans a float, called getfloat. for some reason, I am getting random values. If I enter "1" it prints 49.Why does this happen? And also, when i ...
1
vote
1answer
39 views

Ncurses reading numpad keys and escaping

I am trying to use ESC to escape from a program using getch(). I created a small program to demonstrate my problem. #include <ncurses.h> int main(void) { int key = 0; initscr(); ...
0
votes
1answer
103 views

Why getch() is not working in Visual Studio 2008?

Below code works in DevC++ with MinGW works flawlessly but Visual Studio 2008 spits this: error C3861: 'getch': identifier not found . What can I do to accept getch() if this is not possible is ...
3
votes
1answer
131 views

'Inappropriate ioctl for device' error in C

I have a getch() function which my tutor gave me, which is getting input from the keyboard without clicking on 'ENTER'. But, when I run it in Ubuntu 12 in Eclipse, I get the following error: ...
1
vote
2answers
96 views

Why the output just flashes when I do not use getch()?

When I compile and run the following code in Dev C++, #include <stdio.h> main() { printf("Hello world!"); } The output just flushes. When I add getch, it stays. #include ...
0
votes
2answers
74 views

getch() returns \377! instead of reading character

I am using Xcode and using the C language trying to understand how to use the Getch function to start a project. I copied some code someone had written as an example that should work, however instead ...
0
votes
1answer
54 views

Twitter like “characters left” function problems in C: How to prevent it from going to the next line?

Like my last question, this concerns my school project. I have to do a "twitter like" program in C and i'm having a small layout problem. Please, keep in mind that i'm aware that this code is not ...
0
votes
1answer
353 views

How to use kbhit and getch (C programming)

I'm trying to create a function that will printf a certain string if the user presses any button on the keyboard EXCEPT for capital P, if the user presses P then it will break the loop. However I ...
0
votes
0answers
155 views

python curses getch() with threading and blocking? [closed]

I am trying to implement a tetris battle game using Python curses with threading. So I can play it with two hands on my own computer. If you could run the code below, I'd really appreciate it. The ...
0
votes
1answer
99 views

Non-Blocking Input in Java realized through JNI

I am in the pursuit of designing a command-shell using Java . One important feature which I had to immediately implement was "auto complete" , as facilitated by the command-shell when "tab" key is ...
-1
votes
1answer
239 views

Difference between getch() and scanf() functions

I had difficulties while executing the following code. The variable 't' take a null value after complete one execution. The problem was solved by using getch() instead of scanf(). But i don't know why ...
1
vote
3answers
121 views

stopping `scanf` when user enters “.” DOT

I am messing around with the function below, I want to end input capture when user enters a DOT character. It seems that getche() is not doing what it is intentended to do: void Encode(FILE *fp) { ...
-2
votes
2answers
96 views

Waiting for user input [closed]

I want to make a program that waits for the user input only 2 sec and if the user doesn't put smth the program proceeds (I am using getch()) function )
3
votes
2answers
511 views

getch() waits for Enter key? [duplicate]

Possible Duplicate: C/C++: Capture characters from standard input without waiting for enter to be pressed I'm using C-Free 4 Standard on windows 7 and I writing a C program. I'm using ...
0
votes
5answers
383 views

What exactly getch() does in C?

I thought (upto now) that the function of getch() reads a character from input buffer (or keyboard, to be simple). But i had to argue with my lab instructor. They say that the only work of getch() is ...
4
votes
2answers
111 views

getch expects extra character

Hello I am new to programming and I am writing a program in C. In my header file I have this macro: #define yesno(c) (c==ENTER || c==' ' || c=='\t') ? ENTER : ESC In my program I have this code ...
0
votes
2answers
405 views

c++ alternative for getch() and clrscr()

I use code::blocks 10.05 for compiling C++. But I cannot use getch() It says unknown. When I #include <conio> it says unknown library. So what is the alternative to be able to use getch in ...
-2
votes
2answers
142 views

Whats wrong with char input for this 2 dimensional char array? why its not taking total of K*K inputs?

I am trying to take 2 dimensional char data from user, but it's not taking input from user properly. Could you highlight the bug in following code? #include<stdio.h> #include<stdlib.h> ...
2
votes
1answer
153 views

_getch() doesn't work on windows server 2012

I need a DLL for users can type password and not echo on the screen. So I use _getch() for getting chars with no echo like this, //get character with no echo ch = _getch(); and ...
1
vote
1answer
290 views

curses getch() returns different values for the main window and pads in python

The getch() method returns different values for the main window and pads if the key pressed is non-ASCII. For example, pressing the arrow keys I get the expected KEY_UP, KEY_DOWN etc in the main ...
0
votes
0answers
67 views

how to send some input to external program's _getch() in Java

I invoke an external program in Java. At the end of the external program, these is a "_getch" statement. so if i want to terminate the external normally, I should write something to this program's ...
2
votes
3answers
2k views

Python method for reading keypress?

I'm new to Python, and I just made a game and a menu in Python. Question is, that using (raw_)input() requires me to press enter after every keypress, I'd like to make it so that pressing downarrow ...
0
votes
3answers
233 views

getch(); does not pause the loop

I have this piece of code for instance: while(true){ printf("looping"); getch(); } Instead of waiting for user input on each loop, the loop just continues without me; printing loop loop ...
1
vote
2answers
344 views

How to wrap a windows interactive console program for automation

I have an interactive console program in windows. I need to press keystroke like 'e' 'c' to the cmd window. It's convenient for human operating , but very difficult for program automation. And now, ...
1
vote
2answers
1k views

Non blocking getch() [duplicate]

Possible Duplicate: Non-blocking getch(), ncurses Im trying to make Tetris game in standard console. I need non-blocking getch(), so the blocks can fall without pressing any key. It would ...
0
votes
2answers
327 views

How to make getch() accept taking an enter hit (\n)?

I made a touch typing console program in C++. It reads the text from a file and load it to the screen. User must enter the right letter in order for him to proceed to the next letter. My only Problem ...
0
votes
0answers
355 views

C - GetKeyState() conflicting with getch();

I'm writing a small program in C. I need to handle the state of some virtual keys (arrow keys, return and esc) plus the 'S' key so i chose GetKeyState. The problem is that i can't use getch() to ...
1
vote
2answers
756 views

getch(); runtime error in c and codeblock

I use codeblocks IDE and gcc compiler. I tried to write the simple program billing system.We I use the getch(); for character input there will be no error during building the project but at run time ...
4
votes
1answer
634 views

How to have password echoed as asterisks

I am trying to figure out how to prompt for a password, and have the users input echoed back as asterisks (********) So recently, I took on the project of creating a remote server that could be ...
0
votes
1answer
109 views

_getch not reading input into variable

I'm having trouble with the _getch() function, I want it so that the user does not need to hit ENTER when selecting things from the menu. However, when I try and use it, it either doesn't input the ...
2
votes
4answers
3k views

getch and arrow codes

I'm writing a programm that's using getch() to scan for arrow keys. My code so far is: switch(getch()) { case 65: // key up break; case 66: // key down break; case ...
-1
votes
1answer
342 views

eclipse C++ alternative for getch()

I am using C++ under Eclipse. With the Borland compiler I have used getch() function to take user input without showing what was entered. The getch() function is not working under Eclipse. Is there ...
2
votes
2answers
683 views

getch and putchar not working without return

I have been trying to get getch to work in another program with no success. So I have made the most basic program I can using getch the way I want it to work in the main program. I have researched ...
0
votes
1answer
94 views

Arrow Keys in on OS X

I'm trying to make a little game for the console, so I need to check wich Arrow key is pressed. Can't find any useful in the internet. So far I tried this: printf("%i", getch()); but getch() ...
1
vote
1answer
469 views

Check for extra characters in Linux terminal buffer

I try to implement getch() function in Python, which should also return list of chars for special keys like F1-F12 and arrow keys. These special keys generate several chars in a sequence. Therefore ...
1
vote
4answers
518 views

Scala Console Get Keypress

I'm writing a roguelike in Scala. I need to be able to see when the user presses an arrow key for example. All of the solutions I have found require the player to press enter. Is there any way to ...
1
vote
3answers
598 views

getch() of ncurses doesn't work

I need to create a mainloop for my program and wrote the following function: void menu(){ int ch; cbreak(); noecho(); initscr(); refresh(); while (ch != KEY_F(9)){ ch = getch(); cout ...
2
votes
1answer
452 views

ncurses app in C - reading standard input

I'm writing a simplified version of Linux standard less command for OS academic classes, and I'm allowed to use ncurses to make it easier. "Simplified" means that the user should be able to scroll the ...
4
votes
1answer
280 views

how to raise event getche() from process.Popen() - does not monitor stdin

I am launching a binary in windows using: process = subprocess.Popen(cmd, stderr = subprocess.PIPE, stdin = subprocess.PIPE, stdout = ch.input) ch.input comes from: ch = InputStreamChunker('\n') ...
2
votes
2answers
3k views

Why getch() returns before press any key?

int main(int argc, char *argv[], char *env[]) { printf("Press any key to exit.\n"); getch(); return 0; } According to the man page, getch should wait until any key is pressed ...
2
votes
1answer
277 views

Is it possible to use getch() to obtain inputs of varying length?

I've taken up the adventure of creating a relatively small command-line RPG to flex my newfound Python muscles, but I've already run into a conundrum. I'm using this implementation of getch(): def ...
4
votes
3answers
2k views

C exit from infinite loop on keypress

How can I exit from an infinite loop, when a key is pressed? Currently I'm using getch, but it will start blocking my loop as soon, as there is no more input to read.
0
votes
0answers
271 views

When to use getwch() instead of getch() in Windows?

When must you use getwch() instead of getch() in Windows? Why? I haven't been able to find any such situation through my experiments, but I want to know if I'm missing something.
0
votes
2answers
1k views

how to clear the key buffer while using kbhit() and getch()

heu so I'm using the above stated windows functions which luckily are for windows 2000 and up, but in making a game on the console I've run into a problem: as soon as a key is pressed the console gets ...
4
votes
5answers
421 views

Help with getch() function

I want to use the getch function to get a character... So the user can enter only Y OR N Character.. but the while loop is not working... I need help! Thanks #include <stdio.h> main(){ char ...
2
votes
3answers
727 views

Strcat throws segmentation fault on simple getch-like password input

I am using Linux and there is a custom function of which returns an ASCII int of current key sort of like getch(). When trying to get used to it and how to store the password I came into an issue, my ...
2
votes
4answers
100 views

How do I use pointers in combination with getc?

I have a function getNum(), which gets a number from file and returns it. When I go back into getNum() I have lost the pointer and it starts at the begging of the file again. I'm wondering How do I ...
2
votes
3answers
789 views

a simple getch() and strcmp problem

I have this simple problem that gets an input from the user using a function then checks if the input is 'equal' to the "password". However, strcmp would never return my desired value, and the culprit ...
1
vote
0answers
389 views

Can curses be avoided to get an “any key” getch prompt echoed to a raw_input() call?

I have a command line mini-app written in Python 2.7 that has a "press any key" style prompt, but that responds differently depending on what kind of key the user types. If they type a character, ...
2
votes
4answers
7k views

How to implement getch() function of C in Linux?

In turbo c++, we can use getch() function available in conio.h. But in linux, gcc compiler doesn't provide conio.h header file, then how to get functionality of getch() function?

1 2