Tagged Questions
4
votes
5answers
246 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 ...
3
votes
3answers
275 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.
2
votes
1answer
115 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 ...
2
votes
2answers
318 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
3answers
362 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
77 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
341 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
3answers
2k 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
vote
2answers
3k views
Problem with kbhit()[and getch()] for Linux
while(ch != 'q')
{
printf("looping\n");
sleep(1);
if(kbhit())
{
ch = readch();
printf("you hit %c\n",ch);
}
}
This code gives me a blocking getch() like functionality. I am ...
0
votes
0answers
116 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
3answers
658 views
Equivalent function to C's “_getch()” in Java?
I was messing around with C/C++ and recently found the _getch() function. I also recently got an invite to Google Wave (amazing, btw), and I wanted to emulate the ability to send messages before you ...