Tagged Questions

2
votes
3answers
361 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 ...
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
2answers
524 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 ...