while( (c = fgetc(stdin)) != EOF ){
count++;
if (count == lineLen - 1){
moreChars = (char*) realloc(line, lineLen *=2);
if(moreChars == NULL){
puts("Error allocating for moreChars.");
free(moreChars);
exit(-69);
}
else
line = moreChars;
}
line[count - 1] = c;
}
That is my code. My problem is that when the user enters (ctrl + d) to end the loop they have to enter it twice ie, to end loop user types (ctrl+d)(ctrl+d).
sample input:
hi there you guy dood (ctrl+d) (ctrl+d)
ideal input:
hi there you guy dood (ctrl+d)
To make it more clear:
I want the user to only have to enter (ctrl+d) once to end the loop, and can't figure out why the use has to enter (ctrl+d)(ctrl+d) to end loop.
Thanks.
cis anint– William Morris Jan 26 at 21:07echo abcde | ./example(or whatever your program is called) to see it working the way you expect. – Carl Norum Jan 26 at 21:14