Tagged Questions
The getchar tag has no wiki summary.
8
votes
5answers
1k views
Confused about getchar() function
I am confused about getchar()'s role in the following code. I mean I know it's helping me see the output window which will only be closed when I press the Enter key.
So getchar() is basically waiting ...
8
votes
9answers
4k views
How to avoid press enter with any getchar()
this is a "novato" question for the c programming language:
in the next code:
#include<stdio.h>
int main(void){
int c;
while((c=getchar())!= EOF)
putchar(c);
return 0;
...
6
votes
3answers
560 views
Why does this C program print weird characters in output?
I've the following program:
#include <stdio.h>
int main()
{
int ch;
while( ch = getchar() != '\n') {
printf("Read %c\n",ch);
}
return 0;
}
...
4
votes
4answers
128 views
Please Explain this Example C Code
This code comes from K&R. I have read it several times, but it still seems to escape my grasp.
#define BUFSIZE 100
char buf[BUFSIZE];
int bufp = 0;
int getch(void)
{
...
4
votes
2answers
850 views
C getchar vs scanf
I am confused by a piece of code found in a function I am studying:
char GetCommand( void )
{
char command;
do {
printf( "Enter command (q=quit, n=new, l=list): " );
scanf( ...
4
votes
3answers
759 views
C: How do I get a program using getchar to run?
I'm a total C n00b trying to teach myself C off K&R. My question is kind of embarrassingly elementary. OK, here goes: I can't get programs using getchar to give the kind of output I expected. If ...
3
votes
3answers
123 views
Ctrl-C eaten by getchar()
I've been searching for a solution to my problem for a long time now that's why i'm turning to you:
Consider this piece of code:
static char done = 0;
static void sigHandler(void)
{
done = 1;
}
...
3
votes
6answers
253 views
getchar and putchar
My C code:
int c;
c = getchar();
while (c != EOF) {
putchar(c);
c = getchar();
}
Why does this program react like this on inputting hello?
hello
hello
and not like:
hheelloo
3
votes
2answers
352 views
Is getchar() equivalent to scanf(“%c”,&a)?
Is getchar() equivalent to scanf("%c",&a);?
Is putchar(c) equivalent to printf("%c",a); where a is a char variable?
3
votes
5answers
1k views
getchar() and putchar()
in the example:
#include <stdio.h>
main()
{
long nc;
nc = 0;
while (getchar() != EOF)
++nc;
printf("%ld\n", nc);
}
I don't quite understand it. putchar() would put ...
3
votes
8answers
4k views
Why doesn't getchar() wait for me to press enter?
I am learning C and I'm using "getchar()" to stop the command windows so I can see the exercises am doing but it just doesn't work. heres a sample:
#include <stdio.h>
int main()
{
int ...
3
votes
2answers
2k views
C : How to simulate an EOF?
I am currently reading K&R's book and typing in the examples from the first section, and there are a couple of examples such as this:
while((c = getchar()) != EOF) {
//do something
}
I am ...
2
votes
3answers
94 views
C Programming: Name arranger! Coding newb?
Complete newbie here. 2nd day in my intro to programming class, so be gentle. We're programming in C btw.
Our assignment was to prompt the user to give us a name in the format: John Smith, and then ...
2
votes
7answers
90 views
C: using pointer as string: unpredictable behavior
I'm writing a C program to find the longest line in the user's input and print the line's length and the line itself. It succeeds at counting the characters but unpredictably fails at storing the line ...
2
votes
5answers
106 views
strange behavior of printf() inside a while loop
Can some one explain me why I see a double input of the printf() function the while loop:
#include <ctype.h>
#include <stdio.h>
int main(){
int x = 0;
while ( x != 'q'){
...
2
votes
4answers
105 views
a simple question about getchar() usage?
When searching for everything about getchar() function in this really great site, I found this post: Why doesn't getchar() wait for me to press enter?
#include <stdio.h>
int main()
{
...
2
votes
3answers
229 views
Problem with getchar in C
I want to write a program which can:
when I enter, say "Alan Turing", it outputs "Turing, A".
But for my following program, it outputs "uring, A", I thought for long but failed to figure out where T ...
2
votes
2answers
116 views
i want to getchar twice but i cant
int main()
{
int r, c;
r = getchar();
c = getchar();
putchar(r);
putchar(c);
printf("\n");
return(0);
}
After it reads in r, the program outputs r and quits. I want it to ...
2
votes
2answers
134 views
k&R,how getchar read EOF
while reading from k&r i came across the following example
#include<stdio.h>
int main()
{
int c;
while((c=getchar())!=EOF)
{
putchar(c);
}
printf("hello");
}
doubt 1:when i am typing ...
2
votes
3answers
397 views
Add a Timeout for getchar()
This is a question in the C programming language.
I need to add a timeout function for getchar() in my program.
What do I do so that when my program reaches the instruction getchar(), it will only ...
2
votes
2answers
427 views
how to flush the console buffer?
i have some code that run repetedly :
printf("do you want to continue? Y/N: \n");
keepplaying = getchar();
in the next my code is running it doesnt wait for input.
i found out that getchar in ...
2
votes
6answers
1k views
Using getchar() on c gets the 'Enter' after input
I'm trying to write a simple program that asks a user to choose from a menu in a loop.
I use getchar() to get the input, however i've noticed that when I enter a char and press 'Enter' the program ...
2
votes
1answer
468 views
String input using getchar()
The following code uses getchar() to accept a line of input.
#include <stdio.h>
#include <stdlib.h>
int main()
{
char *rawString = (char *)malloc(200*sizeof(char));
char ...
2
votes
1answer
2k views
getc Vs getchar Vs Scanf for reading a character from stdin
Of the below three functions:
getc
getchar &
scanf
which is the best one for reading a character from stdin and why?
Are there any known disadvantages or limitations for any of these functions ...
2
votes
5answers
635 views
Why does this getchar() loop stop after one character has been entered?
#include <stdio.h>
int main() {
char read = ' ';
while ((read = getchar()) != '\n') {
putchar(read);
}
return 0;
}
My input is f (followed by an enter, of course). I ...
2
votes
7answers
1k views
Problem with EOF in C
I'm writing a program which is supposed to read two strings that can contain line breaks and various other characters. Therefore, I'm using EOF (Ctrl-Z or Ctrl-D) to end the string.
This works fine ...
1
vote
1answer
27 views
How can I generate an EOF (or an ASCII 0) in a visual studio debug console?
I have a console-mode program running on Windows. The program calls getchar() in a loop unitl either an EOF or a 0 is returned. I'd like to enter one of the following as a test vector while ...
1
vote
1answer
60 views
Dealing with input in C
A brief question really, looking for, wondering about, and asking for any tips for what the best way is to handle this type of input:
word word
word word word word
word word word
word word
...
1
vote
2answers
19 views
several getchar calls
I have a VS 10 console application,which has to take two char inputs and make some processing based on their values.I wrote the following code:
char c1,c2;
printf("Ener c1:");
c1 = getChar();
//Some ...
1
vote
2answers
58 views
C - Program terminates without scanf'ing?
Not really sure whats going on here, whether Im just being a fool or something odd with the compiler.
The code below should, after calling my searchList function, take input from the user, but ...
1
vote
4answers
71 views
A Way to deal with this input?
I'm trying to identify a way in which when data is input like such:
Name Integer
Name Integer
Name Integer
.
Each time the Name and Integer are entered, and a newline is detected, stuff is done ...
1
vote
4answers
262 views
int c = getchar()?
ok so im reading this book: The C Programming Language - By Kernighan and Ritchie (second Edition) and one of the examples im having trouble understanding how things are working.
#include ...
1
vote
1answer
134 views
getchar() taking the last char from previous printf()?
I'm writing a compiler/interpreter for the esoteric language brainf*ck (I'm not too sure on StackOverflow's profanity policy, so I'll censor myself until somebody tells me I don't have to), and I'm ...
1
vote
3answers
438 views
Very simple C question using getchar() and putchar()
Hello I am teaching myself C and going through the K & R book and I am having some trouble (I am running OS X). This is from section 1.5.1 "File Copying" which is supposed to take a character as ...
1
vote
3answers
146 views
C getchar error
I wrote the most innocuous C program but I can't get the expected result. I hope you can tell where my error is.
This is the code:
#include <stdio.h>
#include <stdlib.h>
int main(int ...
1
vote
3answers
111 views
How to prevent menus from glitching when scanf expects an int but receives characters (C)
Take for instance:
printf("Continue?\n>>");
scanf("%d", &cont);
getchar();
Normally I add the getchar() to prevent the program from infinite looping (reading off the '\n' character from ...
1
vote
2answers
1k views
Using getchar() in a while loop
#include <stdio.h>
main()
{
int c ;
while ((c = getchar()) != EOF)
{
int isEOF = (c==EOF);
printf("is %c EOF: %d ", c, isEOF);
}
}
Why printf() method is called ...
1
vote
2answers
74 views
Why is this exception thrown in the visual studio C compiler?
I am trying to get more adept and my C programming and I was attempting to test out displaying a character from the input stream while inside of the loop that is getting the character. I am using the ...
0
votes
3answers
56 views
read char from console
I write console application which performs several scanf for int
And after it ,I performs getchar :
int x,y;
char c;
printf("x:\n");
scanf("%d",&x);
printf("y:\n");
scanf("%d",&y);
c = ...
0
votes
2answers
92 views
error: A label can only be part of a statement [closed]
I'm writing a brainfuck interpreter in C, and I'm having a little bit of trouble with the use of somethings I'm not used to. In brainfuck, a comma ( ,) is essentially getchar(). So I have the ...
0
votes
4answers
126 views
getchar() doesn't work well?
I wrote this code in C++, and I used getchar() to puase the console, but I did not see any effect of using that function, here is the code:
#include<iostream>
#include<stdio.h>//to pause ...
0
votes
1answer
109 views
C User input validation - only one character which converts to int needed
I have problem taking user input in C. I want to take the first number only. I filter the user input from characters but when I enter 2 digits(wrong user input) the program starts to behave strange
...
0
votes
8answers
133 views
while(getchar() != multiple arguments)
How to use getchar as the condition for a while loop and having it terminate when (c=getchar()) = EOF or '\n' or '\0'.
I tried:
int c=0;
while((c=getchar()) != EOF || '\n' || '\0'){
putchar();
}
...
0
votes
2answers
193 views
confused about while(getchar() != '\n');.. would you help.?
*i knew that getchar() is just a function gets the first character of the line the user entered then the next and so on
*and if we typed getchar() in a line -at the finishing of the code-it's for let ...
0
votes
1answer
161 views
C getchar() and putchar()
Going through K&R, I'm trying to get my head around C.
I want to write a program that prints on the screen the user's previous line, unless the character was "a".
int main(){
int c;
...
0
votes
3answers
173 views
This C program doesn't work
I copied the following C code from K&R. The code is supposed to print a line if it is currently the longest line typed by the user.
This is the code:
#include <stdio.h>
#define MAXLINE ...
0
votes
2answers
98 views
Expression evaluation in C
while ((x[num++] = getchar()) != ' ');
This reads a char at a time and stops if it encounters a space.
But how does it evaluate the parenthesis with the space? What is the result of the ...
0
votes
4answers
263 views
getchar() in a while loop Question
I am a newbee writing a C program for school where the input is redirected to a file. I am to use getchar() only to retrieve the information. I am using Windows Visual 2008 and I cannot figure out why ...
0
votes
2answers
167 views
EOF reading C/C++
I'm using NetBeans MinGW to compile simple c programs(I'm new at this).
My problem is that I have this simple code
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) ...
0
votes
2answers
82 views
Question about getchar() in C?
I am learning and reading a C book. In the book, they say: "getchar() retrieves a single character from the standard input stream buffer without translating the input. "
I do not understand what the ...