0
votes
2answers
152 views
C++ can native type char hold End of File character?
The title is pretty self explanatory.
char c = std::cin.peek(); // sets c equal to character in stream
I just realized that perhaps native type char can't hold the EOF.
thanks,
nmr
0
votes
4answers
91 views
How to use EOF to run through a text file in C?
Hello,
I have a text file that has strings on each line. I want to increment a number for each line in the text file, but when it reaches the end of the file it obviously needs to stop. I've tried …
0
votes
2answers
58 views
bison end of file
If i forget to put an empty line at the end of any of my files my program gets a syntax error. The problem is my grammar expects a newline to end the current line. Since a newline doesnt exist bison …
0
votes
1answer
103 views
python stdin eof
Hi all,
How to pass python eof to stdin
here is my code
p = Popen(commd,stdout=PIPE,stderr=PIPE,stdin=PIPE)
o = p.communicate(inputstring)[0]
when i run the commd in command line after i input …
2
votes
2answers
94 views
Why doesn’t CTRL-D send EOF in mono?
Take the following C# file, the simplest possible repro of my problem:
using System;
using System.IO;
public static class Test
{
public static void Main(string[] args)
{
string line;
…
0
votes
5answers
93 views
Avoiding ‘End Of File’ errors
I'm trying to import a tab delimited file into a table.
The issue is, SOMETIMES, the file will include an awkward record that has two "null values" and causes my program to throw a "unexpected end of …
0
votes
4answers
118 views
How to detect EOF in awk?
Is there a way to determine whether the current line is the last line of the input stream?
0
votes
6answers
176 views
Whitespace at end of file causing EOF check to fail in C++
I'm reading in data from a file that has three columns. For example the data will look something like:
3 START RED
4 END RED
To read in the data I'm using the following check:
while …
1
vote
7answers
272 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
7answers
358 views
Infinite loop on EOF in C++
This code works as desired for the most part, which is to prompt the user for a single character, perform the associated action, prompt the user to press return, and repeat. However, when I enter ^D …
1
vote
3answers
297 views
C Programming: EOF as a character
When programming C for the command console, what happens when you have a function that tries to use SCANF to ask user input for a CHAR variable, and the user types CTRL+Z (EOF) and hits enter?
For …
1
vote
3answers
369 views
End of File in C++
Hi,
I have a n X 2 matrix stored in a text file as it is. I try to read it in C++
nb_try=0;
fin>>c_tmp>>gamma_tmp;
while (!fin.eof( )) //if not at end of file, continue reading …
0
votes
1answer
55 views
How do I get the ruby YAML implementation to not read beyond the YAML EOF(…)
In the YAML specification it says ... is the EOF
If I do:
YAML.load_documents("--- abc\n--- 42\n...\nerror") { |d| puts d }
I should get
abc
42
But I get
abc
42
error
Unfortenely there is not …
2
votes
2answers
230 views
How to read input until EOF in Lisp
How do I read an input stream until EOF in Lisp?
In C, you might do it like this:
while ((c = getchar()) != EOF)
{
// Loop body...
}
The reason I am asking this is because I would like to be …
0
votes
2answers
158 views
Problem in fread and an EoF mark
For some reason, fread stoppes reading at a place in the file that contains 1A1A (raw bytes, ofcourse, not text).
The file is open in "rb" mode, and it does skip 1A's, but not the double 1A.
Any …
