I'm doing homework for my C programming class. The question states "Write a program which reads input as a stream of characters until encountering EOF". I'm using Xcode on my macbook and the only way I know to make the program encounter EOF is using ctrl + D or ctrl + Z. But it will exit my program completely.
For example I have this code:
int main()
{
int ch;
while ((ch = getchar()) != EOF)
{
putchar(ch);
}
printf("%d",ch);
return 0;
}
Is there away for the code to execute the printf("%d",ch) after the loop (after i hit ctrl + D on my keyboard)?
First of all
ctrl+z
does not input EOF to your program. If you hitctrl+Z
your shell will put your program to sleep.Second, if you want to handle these
ctrl+Z
in your program you need to learn about signal handling in C.And I think because you were hitting
ctrl+Z
you were not seeing any output on the screen.You can test your program using (with a POSIX shell) here documents.
First compile your source code
mycode.c
into a binarymybin
with(it could be
clang
orcc
instead ofgcc
)then run
mybin
with a "here document" likeYou could also use input redirection. Make some file
myfile.txt
and run./mybin < myfile.txt
You could even run your program on its own source code:
./mybin < mycode.c
And the input could even come from some pipe, e.g.
ls * | ./mybin
BTW, what you are observing is that
stdin
, when it is a terminal, is line-buffered. See this answer (most of it should apply to MacOSX).Notice that your code is incorrect: you are missing an
#include <stdio.h>
near the top of the file, and yourmain
should really beint main(int argc, char**argv)
(BTW you could improve your program so that when arguments are given, they are file names to be read). At last the endingprintf
would surely show -1 which is generally the value ofEOF
Also, it is much better to end your
printf
format control string with\n
or else use appropriately fflush(3)Notice that end-of-file is not an input (or a valid
char
), it is a condition on some input file stream likestdin
, and the getchar(3) function is specified to returnEOF
which is anint
outside of the range ofchar
(on my Linux systemEOF
is -1 becausechar
-s are between 0 and 255 included). You might test end-of-file condition after some input operation (never before!) using feof(3)A terminal in usual cooked mode is handled by the kernel so that when you press Ctrl D an end-of-file condition is triggered on the file descriptor (often
STDIN_FILENO
i.e. 0) related to that terminal.Make sure you are sending the EOF signal, not a signal that actually terminates your program.
For example, for c program running in windows the EOF is represent by typing ctrl+z and pressing enter. Doing this will exit your while loop but still runs the rest of your program.
However, ctrl+c, which some people may have mistakenly tried for EOF, actually kills your program and will prevent the code behind your while loop from executing.
For mac you will need to find what is the input that corresponds to EOF, and make sure that is what you are sending through rather than the kill signal, which I suspect is what you are doing here.
No it won't. If you run your program in the Xcode debugger, provided the console pane has the focus, all input you type will go to your program (note that, by default, stdin is line buffered, so you'll only see output when you press the return key). If you hit control-d (not control-z), you're program will exit the loop and print -1 in the console window (which is what you expect because that is the value of EOF in OS X).
Here is the result when I ran your program without change in the Xcode debugger (I typed command-r in Xcode)
bgbgdfsfd
bgbgdfsfd
hgfdgf
hgfdgf
-1
Regular font was typed by me, bold font was from your program. At the end of each of the lines typed by me, I pressed carriage return. After your program printed
hgfdgf
I typed control-D. Your program then printed the value of the last thing it got fromgetchar()
which wasEOF
which is-1
in the OS X C library.Edit
If you are unsure that your program is printing the EOF, change your
printf
format string to (for example)Then instead of
-1
your program will outputLast character is [-1]
on the last line.