I'm a middle experienced Java developer and have many problems learning the C language for my computer science study. I try it with the book "The C Programming Language" which many people seem to recommend.
But I've got problems with the simplest stuff like the EOF in combination with getchar(). Here's the code:
#include<stdio.h>
main()
{
int i = 0;
while (getchar() != EOF)
{
++i;
printf("Count of characters is %d", i);
}
}
I'm working with Mac OS X Lion and use the "cc" command with "./a.out" for running in terminal, like described in the book to run the file. And what I get is:
- Always counting one character too much
- the while loop never ends! it just waits for another input after reaching end of input ...
I really have no idea what could be the issue. Can someone help?
gcc -Wall -g yourprog.c -o yourbin– Basile Starynkevitch Nov 29 '11 at 17:49i? Like basile said, redirect stdin. And you'll want to add\nto the end of that string. – Kevin Nov 29 '11 at 17:53ccisgcc. When the book was written (depending on edition?), gcc didn't exist. – Wooble Nov 29 '11 at 18:39