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 which makes one better than the other?
scanf is a C function to read input from the standard input until encountering whitespace, newline or EOF while getchar is a C function to read a character only from the standard input stream(stdin), which is the keyboard. Thus, this is the main difference between scanf and getchar.
scanf is faster because it can read multiple characters at once. However, getchar is safer because it can only read one character at a time.
getchar is a function in C programming language that reads a single character from the standard input stream stdin, regardless of what it is, and returns it to the program. It is specified in ANSI-C and is the most basic input function in C. It is included in the stdio. h header file.
getc returns the next character from the named input stream. getchar is identical to getc(stdin). fgetc behaves like getc, but is a genuine function, not a macro; it may therefore be used as an argument. fgetc runs more slowly than getc, but takes less space per invocation.
If you simply want to read a single character from stdin, then getchar()
is the appropriate choice. If you have more complicated requirements, then getchar()
won't be sufficient.
getc()
allows you to read from a different stream (say, one opened with fopen()
);scanf()
allows you to read more than just a single character at a time.The most common error when using getchar()
is to try and use a char
variable to store the result. You need to use an int
variable, since the range of values getchar()
returns is "a value in the range of unsigned char
, plus the single negative value EOF
". A char
variable doesn't have sufficient range for this, which can mean that you can confuse a completely valid character return with EOF
. The same applies to getc()
.
from Beej's Guide to C Programming
All of these functions in one way or another, read a single character from the console or from a FILE. The differences are fairly minor, and here are the descriptions:
getc() returns a character from the specified FILE. From a usage standpoint, it's equivalent to the same fgetc() call, and fgetc() is a little more common to see. Only the implementation of the two functions differs.
fgetc() returns a character from the specified FILE. From a usage standpoint, it's equivalent to the same getc() call, except that fgetc() is a little more common to see. Only the implementation of the two functions differs.
Yes, I cheated and used cut-n-paste to do that last paragraph.
getchar() returns a character from stdin. In fact, it's the same as calling getc(stdin).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With