473,386 Members | 1,795 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Use of getchar

Cam
Hi everyone,

Before I answer to a (hopefully) helpful reply to this post, I have been
rapped over the knuckles for 'top-posting' and I do not wish to be a learner
poster who observes poor netiquette as I am a firm believer in consideration
.... to this end, could somebody please tell me how I reply to a message
without top-posting? Do I need to have my original post selected when I hit
the 'reply' button?

Here's my question (and please remember that I'm teaching myself as I go and
initially learning what I need to complete assignments although it is my
intention to obtain some sort of proficiency at this code ..)

Previously, I was using the conio.h header and the getche function to read
keyboard input one character at a time to place individual characters into
an array.

As the code is required to compile on a Unix system, I have changed to the
non-platform specific stdio.h header and am using getchar as suggested on
this NG.

The user inputs two 8 bit numbers which then have arithmetic performed on
them. I do this by calling a KeyboardInput() function twice and having the
function modify two arrays by using pointers.

The problem is that the first call of the KeyboardInput() function works
fine. When the function is called a second time (for key2[7] to key2[0]) the
values from the first first call are placed into the key2 array as if the
user had entered them.

Advice is greatly appreciated.

Kind regards,

Cam

code follows:

#include <iostream>
#include <stdio.h> // Re-coded to use ISO standard header (conio.h only used
by Microsoft and Borland)

using namespace std;

void KeyboardInput(); // Function prototype

int key[8], *key_ptr = key, key1[8], *key1_ptr = key1, key2[8], *key2_ptr =
key2;

....

int main()
{
....
KeyboardInput(); // key1[7] to key1[0]
for (counter = 0; counter < 8; counter ++)
{
origkey1[counter] = key_ptr[counter];
key1_ptr[counter] = key_ptr[counter];
addkey1_ptr[counter] = key1_ptr[counter];
} // Get key1 array

KeyboardInput(); // key2[7] to key2[0]
for (counter = 0; counter < 8; counter ++)
{
origkey2_ptr[counter] = key_ptr[counter];
key2_ptr[counter] = key_ptr[counter];
addkey2_ptr[counter] = key_ptr[counter];
} // Get key2 array
....
return 0;
}

....

void KeyboardInput () // Accepts an 8 bis binary input from the user
terminated by ENTER
{
restart:
int ch, counter = 0;
cout << "\nEnter a 2's complement 8 bit binary number: ";

for ( counter = 7; (counter > -1) && ((ch = getchar()) != EOF) && (ch !=
'\n'); counter -- )
key_ptr[counter] = (char)ch - 48; // Subtract 48 from ASCII number to
give integer value

cout << "\n";
Jul 22 '05 #1
3 2219
"Cam" <retsigerymmudathotmaildotcom> wrote in message
news:40******@duster.adelaide.on.net
Hi everyone,

Before I answer to a (hopefully) helpful reply to this post, I have
been rapped over the knuckles for 'top-posting' and I do not wish to
be a learner poster who observes poor netiquette as I am a firm
believer in consideration ... to this end, could somebody please tell
me how I reply to a message without top-posting? Do I need to have my
original post selected when I hit the 'reply' button?
It is simply a question of where you choose to type your reply.
Here's my question (and please remember that I'm teaching myself as I
go and initially learning what I need to complete assignments
although it is my intention to obtain some sort of proficiency at
this code ..)

Previously, I was using the conio.h header and the getche function to
read keyboard input one character at a time to place individual
characters into an array.

As the code is required to compile on a Unix system, I have changed
to the non-platform specific stdio.h header and am using getchar as
suggested on this NG.

The user inputs two 8 bit numbers which then have arithmetic
performed on them. I do this by calling a KeyboardInput() function
twice and having the function modify two arrays by using pointers.

The problem is that the first call of the KeyboardInput() function
works fine. When the function is called a second time (for key2[7] to
key2[0]) the values from the first first call are placed into the
key2 array as if the user had entered them.

Advice is greatly appreciated.

Kind regards,

Cam

code follows:


Since you are keen on newsgroup etiquette, a couple more pointers. Supply
compileable code, i.e., compile it yourself and then copy and paste it
exactly as is. The code you have given below is missing the definition of
some variables, making it difficult to figure out where things have gone
wrong.

The quickest way to diagnose most problems is to run the code through a
debugger. If the code won't compile and people have to guess at missing
code, then this process is tedious and inaccurate.

A couple of comments:

1. All of the pointer variables you define seem redundant. You can just use
the array names directly.

2. Expressions like:

for ( counter = 7; (counter > -1) && ((ch = getchar()) != EOF) && (ch
!='\n'); counter -- )

are wonderfully succinct but impossible to debug. Separate out the various
pieces so you can see how they are working.

In as far as I can reproduce your code, given the many omissions, I think
that the problem is that, when you press Enter after the first number, a
'\n'
is placed in the input stream. This is never cleared, so it is the first
character read the second time around, causing the KeyboardInput function to
immediately exit. You can solve the problem by adding

while (ch != '\n')
ch = getchar();

after the for loop.

--
John Carson
1. To reply to email address, remove donald
2. Don't reply to email address (post here instead)

Jul 22 '05 #2
Cam
Hi John,

Thankyou very much. I thought that the problem may have been due to a
pointer within the string that the helpfile was talking about but I couldn't
understand how to rectify the problem.

As my code is about 400 lines (I'm probably not as succinct a programmer as
I should be) I wasn't sure as to how much I should post. I tried to just
include the salient lines of code to illustrate the problem.

I hope that I can be in a position to return the favour ... :o)

Cheers,

Cam
Jul 22 '05 #3
"Cam" <retsigerymmudathotmaildotcom> wrote in message
news:40******@duster.adelaide.on.net
Hi John,

Thankyou very much.
You're welcome.
I thought that the problem may have been due to a
pointer within the string that the helpfile was talking about but I
couldn't understand how to rectify the problem.

As my code is about 400 lines (I'm probably not as succinct a
programmer as I should be) I wasn't sure as to how much I should
post. I tried to just include the salient lines of code to illustrate
the problem.

A lot of people do the same for the same reason. However, it is a good
practice to try to reproduce the problem in the simplest possible
compileable example in order to isolate the problem. I this do often with my
own code. I sometimes cut and paste the code into a new project and then
delete most of it just to isolate the problem. The less code I have to deal
with, the easier it is to find the problem.

--
John Carson
1. To reply to email address, remove donald
2. Don't reply to email address (post here instead)

Jul 22 '05 #4

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

Similar topics

21
by: clusardi2k | last post by:
/* The below code on SGI will wait for you to enter 2 things, but on Linux it will only wait the first time. I can make the code work by replacing the scanf with: char data ; fgets...
12
by: Emmanuel Delahaye | last post by:
Hi there, It is commonly accepted that a call to the getchar() function suspends the execution of the current program. I have not found any description of this behaviour in the standard (I may...
1
by: White Spirit | last post by:
I'm trying to use getchar() to read alphanumeric data as follows:- char input; /* Take a string of input and remove all spaces therein */ int j = 0; while ((input = getchar()) != '\n') { if...
5
by: Jonathan | last post by:
Hi-- I have the following code: #include <stdio.h> char a,b; int main()
10
by: john | last post by:
What does the standard say about getchar()? Do you have to press return to "send" the char to the program, or is it implementation defined? I read in a book that on some systems the function...
6
by: Alan | last post by:
I am using Standard C compiled with GCC under Linux Fedora Core 4 When I run this program and enter a character at the prompt, I have to press the ENTER key as well. This gives me 2 input...
11
by: shekhardeodhar | last post by:
The program compiles properly (most of it is from k&r) but the second function (here character_count) gives wrong answer. Can someone please explain why ? #include<stdio.h> #define IN 1...
25
by: ehabaziz2001 | last post by:
Why I can not begin my subscript of character arrrays with 0. In this program I can not do : do { na=getchar(); i++; na=getchar(); } while (na!='\n');
3
by: mahiapkum | last post by:
Hello, I have a code which uses getchar(). #include<stdio.h> int main() { char ch; ch = getchar(); if(ch == 'Y') { printf("Beautiful...
22
by: arnuld | last post by:
Mostly when I want to take input from stdin I use getchar() but I get this from man page itself: "If the integer value returned by getchar() is stored into a variable of type char and then...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...

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.