In programming realm, EOF is a sequence of byte (or a chacracter) which indicates that there are no more contents after this.

learn more… | top users | synonyms (1)

0
votes
2answers
26 views

unexpected EOF while parsing error when taking input

I have a very basic program that takes user input and reads it back to the user. the code is: x = input("hello what is your name: ") print("hello " + x) This works perfectly when run in idle ...
0
votes
1answer
8 views

Gradle: Trying to figure out an EOF error. Userguide: Example 14.5. Configuring arbitrary objects using a script.

I am on page 78 of the gradle userguide: Example 14.5. Configuring arbitrary objects using a script. I have copied all of the code in the example: build.gradle task configure << { pos = ...
0
votes
0answers
53 views

C++ reading values into an array on XCode

I can't figure out why the following code doesn't output properly. It's supposed to read a name and grades into an an entry of an array of students. For some reason, there are phantom entries in ...
2
votes
1answer
45 views

In what practical case bool(std::ifstream) != std::ifstream::good()?

I would like to know in what case we can have : bool(std::ifstream) != std::ifstream::good() The difference is that bool(std::ifstream) does not test the eof bit whereas std::ifstream::good() tests ...
0
votes
5answers
35 views

C - Finding end of file BEFORE reading

I have a class that reads "blocks" from a binary file. I use it this way : while(log.HasNextBlock()) { block = log.GetNextBlock(); } My problem is that i need to check inside of the function ...
1
vote
1answer
23 views

Reading a paragraph from the command line on java console program

The while loop in the following program does not terminate so I can't get the output in the last line that tries to print the variable paragraph to console. There are similar problems but the ...
1
vote
2answers
19 views

IntelliJ IDEA: send EOF symbol to Java application

When running a command-line Java application from IntelliJ IDEA, is it possible to send EOF symbol to the program awaiting input? In console this can be done using ctrl-d combination but in IDEA it ...
0
votes
0answers
47 views

early ending while loop with .eof()?

I have tried many variations of this code and as well as displaying every single step to the screen in attempt to fix my mistakes, yet the do-while loop still ends early and doesn't read the entire ...
0
votes
2answers
19 views

Syntax Error: Unexpected EOF while parsing?

I'm doing a simple little average calculator. def avg(): sumSoFar = 0 count = 0 numCount = 0 while numCount != "": numCount = eval(input("Please enter a number or press <enter> to ...
0
votes
0answers
46 views

Python Error: Unexpected EOF while Parsing

I'm writing a program that calls a list of bank accounts and print out their withdrawals, deposits, balances and transactions. I am running into a small error with my code on one of my inputs. Now I ...
0
votes
1answer
37 views

How to read multiple expressions from a file?

I have the following code int main() { Expression* expression; char paren, comma; string program; freopen("input", "r", stdin); while (true) { cout << "Enter ...
2
votes
3answers
90 views

Read from file after end-of-file is reached

I have a function named readNextString(ifstream &file , char* &pBuffer) which extracts the next string from a file, until ',' or '\n' is reached, removes whitespace at the beginning and at the ...
0
votes
2answers
73 views

Python EOF error when reading line [closed]

I keep getting an EOF error. I don't see any reason it why should be yelling at me. I've tried running it in 3.3 and in 2.7 so I guess there must be something wrong. And although I don't get any ...
0
votes
1answer
28 views

End-of-file command in JSON HTTP POST request from putty

It is merely a childish question, but I have stuck upon an HTTP POST request through putty command line. After performing the initial request: ~$ POST <url:port/directory> Please enter content ...
0
votes
1answer
123 views

Bash Script - Cat EOF breaking

I'm attempting to use cat EOF to write a bash script to automatically install a cron script, this part is breaking the script and I'm not sure where I am going wrong. For some reason the script is ...
0
votes
1answer
56 views

ostream << istream and testing EOF on an empty file, alternatives for getting characters from istream

this is my first post on stackoverflow, so if I'm doing it wrong, please let me know. I have my final exam for intro C++ programming on wednesday next week, and I have no way of checking my answers ...
0
votes
1answer
26 views

EOF while looking for matching `"' error

sh -c "cd /home/dipankar/NetBeansProjects/TransBench/Hindi;./mat" When executing following command in linux terminal its executes perfectly. However, when I am trying to run the same using java ...
1
vote
3answers
114 views

C Segmentation fault even when using EOF [closed]

I'm loading a file into memory and I am doing so with the following statement: if ((ch = fread(&temp[i],1,1,loadDict)) == EOF) break; But I receive a segmentation fault. ...
0
votes
0answers
45 views

QuickSort not finding EOF [closed]

I've written a quicksort program that for some reason doesn't seem to be able to resolve the end of my split files. When the WriteFinalSortedFile() method is run the code block that prints ...
2
votes
4answers
129 views

What does eof() returns?

Here is the code: string fname = "/home/jack/example.csv"; ifstream csvin(fname.c_str()); if (csvin.eof()) { do_something; } My question is: In what case eof() returns true. I have the ...
1
vote
0answers
15 views

QFile.atEnd() returns TRUE too early

I'm trying to read in a CSV file. My code is below. The problem I am having is that the first line of the file is read in, as expected, but once the while loop condition is reached again File.atEnd ...
0
votes
0answers
50 views

How to signal EOF of stdin when in mac osx terminal?

I know that in linux's terminal, it's ctrl+D. I also searched that in OSX's terminal. Someone said it's Control+Q, Control+D,return. But this 3 step command doesn't work on my computer.
-1
votes
3answers
350 views

Python - CSV Reader - For Loop Reading The Rows, But Not Reaching The End of the File [closed]

I've developed a function to aggregate the total population of, for each given cohort, given in a file. This function currently gets used twice. Once to get the total [actual] population, and once ...
0
votes
1answer
109 views

C++ Reading file backwards from the end of the file

I am trying to write a program with a menu that reads from a text file a few different ways. I'm just working on menu option #2 still (reading backwards from the end of the file), but I can't wrap my ...
3
votes
1answer
78 views

EOF exercise 1-6 K&R The C programming language

This is taken directly from the K&R book: The precedence of != is higher than that of =, which means that in the absence of parentheses the relational test != would be done before the ...
1
vote
1answer
54 views

PHP add function in EOF [duplicate]

i need to add any function for my result id in EOF but i see this line in page and not work my function. how to fix this?! {design_num('61')} my PHP: $stmt->bind_result($Id,$first_name, ...
0
votes
1answer
61 views

How to make an end of file output it's data?

this is my first time asking a question so forgive me if I stumble over anything. I have been working on a project for a suspension system for a car. I needed to make 4 functions for the displacement ...
0
votes
2answers
157 views

Program continues to read from redirected stdin after EOF

My program is supposed to read unix command from file, execute it, save result to file. If I simply try to run it from console, there is no problem with execution. If I redirect input to file, ...
0
votes
1answer
73 views

Unexpected fgets behavior on EOF

I have this code that gets a line from stdin: char string[USR_SIZE+1]; /*USR_SIZE is 9 */ fgets(string, USR_SIZE, stdin); size_t len = strlen(string); if (string[len-1] == '\n') { // read in ...
0
votes
2answers
42 views

How can I signal EOF to the Git Bash terminal?

I'm writing a command line tool. One of the things this tool can do (certainly not uniquely) is read it's input from stdin. I was testing this interactively (by typing input, rather than cat'ing a ...
-1
votes
1answer
99 views

sys.stdin does not close on ctrl-d

I have the following code in program.py from sys import stdin for line in stdin: print line I run, enter lines, and then press ctrl-d, but the program does not exit. This does work: $ printf ...
1
vote
2answers
94 views

ifstream still reading after eof

I am writing a program that is going to have to import data from a file into various containers. I have it importing everything properly, but it is continuing to read after what is supposed to be the ...
2
votes
1answer
161 views

Vim show newline at the end of file

Using the set eol option Vim automatically adds a newline to the end of the file when it's saved. I have this option on but I would like to be able to see this newline in Vim, so I know that it's ...
0
votes
2answers
97 views

How to stop program code by using EOF

I am done with the input and process part of the program, but I don't know how to terminate the program with EOF. Here is my int main(void) code: int main(void) { int size; int n; char ...
-1
votes
1answer
145 views

end of file reached during http request

Below is the 'get' method : def self.get(url, params={}) url = API_DOMAIN + url + '.json' uri = URI.parse(url) uri.query = URI.encode_www_form(params) http = ...
-1
votes
2answers
227 views

Reaching EOF with fgets

I'm writing a function that perform some authentications actions. I have a file with all the user_id:password:flag couples structured like this: Users.txt user_123:a1b2:0 user_124:a2b1:1 ...
1
vote
2answers
58 views

microsoft EOF detection differs from Linux's? [duplicate]

how can i loop through an input file until EOF without using "while(!IN.eol())", i need other method, i'm using C++. cause there is a problem, Often when people use an end-of-file-detection method ...
1
vote
1answer
85 views

BufferedReader: How to know whether to add a return character when using readLine()?

The following code uses BufferedReader to read from an HTTP response stream: final StringBuilder responseBuilder = new StringBuilder(); String line = bufferedReader.readLine(); while (line != null) { ...
-1
votes
2answers
79 views

Can't get last int from .txt file

My Issue involves reading integers from a text file, saving them to an array and then copying the array to a new .txt file. So there is a file "krol.txt" 2 4 3 7 3 13 2 4 3 1 The problem is that ...
0
votes
1answer
244 views

Reading a file into a string buffer and detecting EOF

I am opening a file and placing it's contents into a string buffer to do some lexical analysis on a per-character basis. Doing it this way enables parsing to finish faster than using a subsequent ...
0
votes
3answers
127 views

While loop with EOF that always prompts for input

I've been spending some time with this issue and decided to come here to see if anyone would be able to help me. I have a given text file I made and I am sending the contents of the text file to my ...
0
votes
1answer
99 views

BATCH: goto EOF if name contains partial word

i have a batch script and it has a variable '%4' and is random file names but sometimes it has names like: 030813.mp3 20130307.mp3 and i want to have it goto EOF if the ext is mp3 i have this ...
1
vote
1answer
65 views

Exception when trying to load drawable image from URL

Here's the code: private static Drawable loadImageFromUrl(String url) { URL m; BufferedInputStream bis = null; Drawable d = null; try { m = new URL(url); URLConnection ...
0
votes
2answers
98 views

In java, when reading in a file one character at a time, how do I determine EOF?

I am having to read in a while and use an algorithm to code each letter and then print them to another file. I know generally to find the end of a file you would use readLine and check to see if its ...
1
vote
2answers
160 views

Bash unexpected EOF in my script to wget an archive and extract it, using error checking functions

I wrote I simple bash script to wget an archive from iblocklist.com and extract it to my transmission blocklists dir. After it failed to run several times I found that the .gz archive being pushed by ...
3
votes
5answers
116 views

How do we terminate this C code?

This c code is from K&R. It is running continuously, even when I type -1. I am using eclipse in fedora 17. whats wrong with this code? how would it terminate? Even CTRL+D not working to end it! ...
1
vote
1answer
210 views

Difficulty using file.seekg() (C++)

The following code only prints the file once: #include <iostream> #include <fstream> using namespace std; int main(int argc, const char *argv[]) { ifstream infile; ...
1
vote
1answer
141 views

perl open file only returning last line of file

I use this same bit of code with different files a couple times through-out the program without problems #if the info is part of a file if($proteinIn =~ m/\.txt$/i){ my $input_file = ...
1
vote
3answers
187 views

Using Antlr for parsing data from never-ending stream

Is Antlr suitable for parsing data from streams that don't have EOF right after the text to parse? According to my observation, the lexer does not emit the current token until the first character of ...
0
votes
0answers
60 views

Traversing Sub-directory File Information - Can't find EOF

I'm currently trying to traverse a directory with sub directories and get the total file size for each sub directory. For example, consider the following: RootDir -SubDir1 --other subdirs -SubDir2 ...

1 2 3 4 5 8