473,698 Members | 2,134 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

about getch()

If I want to "press any key to continue" in Windows, I can use getch()
But the getch() isn't a standard C function
So what should I to do in Linux?
Jun 27 '08
16 3454

Keith Thompson <ks***@mib.orgw rote in message
news:ln******** ****@nuthaus.mi b.org...
If you'll settle for requiring the user to press <return(or <enter>,
or whatever you want to call it), you can have a loop that reads and
discards characters until it sees a '\n' (or EOF).
Yes, and you could call that "loop" "gets()" or "fgets()".. .

Sheesh...things are getting progressively worse around here...

---
William Ernest Reid

Jun 27 '08 #11
"Bill Reid" <ho********@hap pyhealthy.netwr ites:
Keith Thompson <ks***@mib.orgw rote in message
news:ln******** ****@nuthaus.mi b.org...
>If you'll settle for requiring the user to press <return(or <enter>,
or whatever you want to call it), you can have a loop that reads and
discards characters until it sees a '\n' (or EOF).

Yes, and you could call that "loop" "gets()" or "fgets()".. .

Sheesh...things are getting progressively worse around here...
Neither gets() nor fgets() solves the problem.

fgets() requires an argument specifying the maximum input length. If
the input line exceeds that length, fgets() returns before reading the
new-line; if stdin is line-buffered, additional characters will be
left on the input stream, waiting to be read by the next input
operation. It also requires a pointer to storage for a sequence of
characters that are going to be discarded anyway.

gets() is inherently dangerous, and should never be used.

--
Keith Thompson (The_Other_Keit h) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Jun 27 '08 #12

Keith Thompson <ks***@mib.orgw rote in message
news:ln******** ****@nuthaus.mi b.org...
"Bill Reid" <ho********@hap pyhealthy.netwr ites:
Keith Thompson <ks***@mib.orgw rote in message
news:ln******** ****@nuthaus.mi b.org...
If you'll settle for requiring the user to press <return(or <enter>,
or whatever you want to call it), you can have a loop that reads and
discards characters until it sees a '\n' (or EOF).
Yes, and you could call that "loop" "gets()" or "fgets()".. .

Sheesh...things are getting progressively worse around here...

Neither gets() nor fgets() solves the problem.

fgets() requires an argument specifying the maximum input length. If
the input line exceeds that length, fgets() returns before reading the
new-line; if stdin is line-buffered, additional characters will be
left on the input stream, waiting to be read by the next input
operation. It also requires a pointer to storage for a sequence of
characters that are going to be discarded anyway.

gets() is inherently dangerous, and should never be used.
I said it before and I'll say it again...sheesh. ..

Use fgets() with say a 512-byte static buffer you keep in a library just
for crap like this, and specifically instruct the user to press RETURN,
and of course you'll still find something to whine about, but in essence
all you're doing is using the "event loop" of fgets() to break out of the
loop and "continue", which is what the OP wanted to do, which is simple
to do, but for some strange reason is IMPOSSIBLE to do here in the
well-padded confines of this newsgroup...

I mean, this is just a step ahead (or below!) the "hello world" level
of programming, but SHEEEEEEESH...i t's beyond the newsgroup
"regulars"...an d yes I've said it before, but it is beyond me how anybody
with that kind of attitude could ever manage to write any useful
computer code in their life...

---
William Ernest Reid

Jun 27 '08 #13
On Jun 13, 3:34 am, "Bill Reid" <hormelf...@hap pyhealthy.netwr ote:
....snip...
>
Use fgets() with say a 512-byte static buffer you keep in a library just
for crap like this, and specifically instruct the user to press RETURN,
Spectacular security tips there! (no, not really)
Jun 27 '08 #14
vi******@gmail. com wrote:
On Jun 13, 3:34 am, "Bill Reid" <hormelf...@hap pyhealthy.netwr ote:
...snip...
>>
Use fgets() with say a 512-byte static buffer you keep in a library
just for crap like this, and specifically instruct the user to press
RETURN,
Spectacular security tips there! (no, not really)
Remember. Bill has vociferously argued that it's not worth checking
input for end-of-file conditions.

Jun 27 '08 #15

santosh <sa*********@gm ail.comwrote in message
news:g2******** **@registered.m otzarella.org.. .
vi******@gmail. com wrote:
On Jun 13, 3:34 am, "Bill Reid" <hormelf...@hap pyhealthy.netwr ote:
...snip...
>
Use fgets() with say a 512-byte static buffer you keep in a library
just for crap like this, and specifically instruct the user to press
RETURN,
Spectacular security tips there! (no, not really)

Remember. Bill has vociferously argued that it's not worth checking
input for end-of-file conditions.
Nope, I didn't argue "vociferous ly" about that...what I HAVE said
is that it NEVER ends with you loons; if I checked for end-of-file, you'd
find some other apocalyptic event to whine about...

If only I could stop your incessant trolling as easily as just pressing
RETURN...

---
William Ernest Reid

Jun 27 '08 #16
Keith Thompson wrote:
Eric Sosman <es*****@ieee-dot-org.invalidwrit es:
>fuzhen wrote:
>>If I want to "press any key to continue" in Windows, I can use getch()
But the getch() isn't a standard C function
So what should I to do in Linux?
"Press any key other than the one you will press next."

"Press ENTER" is also a candidate.

"Press any key to continue. Press any other key to quit."
This program broke my computer.!!!!

I've pressed the caps lock, the shift, the alt, and the control keys.
Then I tried the num-lock, the print-screen, and the pause buttons.
Nothing happens! You have totally destroyed my computer!
----== Posted via Pronews.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.pronews.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= - Total Privacy via Encryption =---
Jun 27 '08 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2605
by: Shugong Wang | last post by:
getch() function is not a standard C/C++ function. Thought gcc provieds ncurses.h and a getch() function is realized, I still want to know how to realize a getch() function in standard c or c++.
4
5928
by: aurgathor | last post by:
Howdy, What would be the equivalent of getch() using iostream? My current code is: cout << "\nPress <Enter> to continue..."; getch(); but <conio.h> is not kosher for the C++ class.
4
11628
by: Crow | last post by:
Is there any way to make cin behave like getch()? Specifically, getch() returns immediately after a key is pressed and the cin family of input methods seem to block until a new line is encountered. I need some help.
1
21658
by: Ratheesh Kumar | last post by:
My doubt is on the working of getch() function based on the following observations 1) if the pressed key has an ascii code,only that can be read using a single call to getch() 2) if the key has not an ascii code then the first call to getch() returns a zero and ,if we made a second call, it will return the scan code with out an additional key press. Some one please help me to understand getch()
45
3341
by: simnav | last post by:
In the following code something strange happens ! If I keep pressed any of ALT+Arrow, keys, they are extracted two times from buffer then getch seems to stop; if I release and press again ALT+arrow nothing changes: the only way to exit from this condition is press another key a single time. What seems to happen is that kbhit say some keys are present in buffer but for getch don't see any data and waits for a key. Why this happen ? If I...
15
1552
by: mdh | last post by:
I am just trying to figure out if this is intended behavior, or whether I am missing something...(probably the latter). The example given (p96, K&R) is meant to illustrate pointer behavior. K&R say the example "break(s) a stream of characters into integer values" The relevant code is: ( I think)
5
5238
by: Sankar | last post by:
Dear all, In my programming snippet compiled in Linux 2.6, I have a getch() , but the program when executed does not wait for my input.. fflush(stdin), fflush(stdout) - All these did not help. I would appreciate if somone suggests me proven solution to this. thanks in advance Sankar
8
5626
by: Michele 'xjp' | last post by:
Hi there, I am using a POSIX-compliant system, Cygwin on Windows. I need the features of conio.h's getch() and clrscr(), but I can't compile programs with #include <conio.h(since conio.h is NOT POSIX). I tried to implement myself clrscr() with system("cls"), but the program compiles ok, but during the running it will show: sh: cls: command not found
1
1901
by: Ananthu | last post by:
Hi In my college they have given me the following codings for implementing linker function. Codings: #include<stdio.h> #include<conio.h> void cursoron(); void cursoroff();
0
8674
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9157
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9028
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7728
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2330
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.